Notifications
Clear all
Topic starter
24/10/2022 9:45 am
include("connection.php") <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HTML form</title> </head> <body> <form> <!-- this is for input values --> <table border="0" bgcolor="blue" align="center" cellspacing="20"> <input type="text" name="fname" placeholder='FirstName'><br><br> <input type="text" name="lname" placeholder='LastName'><br><br> <input type="email" name="email" placeholder='Email'><br><br> <input type="int" name="pass" placeholder='Password'><br><br> <input type="int" name="conpass" placeholder='ConfirmPassword'><br><br> <input type="submit" id="sub"> </table> </form> </body> </html>
I have added the above code but my connection page is not running.