How to connect HTML Register Form to MySQL Database with PHP (2020)
Youtube Videos How to connect HTML Register Form to MySql Database with PHP form.php <!DOCTYPE html> <html> <head> <title>Register Form</title> </head> <body> <form action="insert.php" method="POST"> <table> <tr> <td>Name: </td> <td><input type="text" name="username" required></td> </tr> <tr> <td>Password :</td> <td><input type="password" name="password" required></td> </tr> <tr> <td>Gender :</td> <td> <input type="radio" name="gender" value="m" required>Male <input type="radio" name="gender" value="f" required>Female </td> </tr> <tr> <td>Email :</td> <td><input type...
Comments
Post a Comment