if you want to remove rockstardevil from website than paytm me 10 dollar !!!! contact detail - instagram rockstardevil34 For this Web App, you Need to create a Four Files 1 - index.php 2 - userwish.php 3 - db.php 4 - .htaccess First Create a Database on your Webserver After creating the Database run this SQL Query to create Tables for the Web App CREATE TABLE event_wishes ( id INT NOT NULL AUTO_INCREMENT, title VARCHAR (500) NOT NULL UNIQUE, str VARCHAR (500) NOT NULL UNIQUE, PRIMARY KEY (ID) ); 27 After creating Database Tables create Three files index.php - Homepage userwish.php - Greeting Page db.php - For MYSQL Database Connection Now Add this Below code on db.php File <?php $dbhost = 'localhost' ; $dbuser = 'YOUR DB USER' ; $dbpass = 'YOUR DB PASS' ; $dbname = 'YOUR DB NAME' ; $con=mysqli_connect($dbhost, $dbuser, $dbpass,$dbname) //connect to the database server ...