Here in this post, we will create an HTML Registration Form
HTML Registration form code
<!DOCTYPE HTML> <html> <head> <title>Register Form</title> </head> <body> <form> <table> <tr> <td>Name :</td> <td><input type="text"></td> </tr> <tr> <td>Password :</td> <td><input type="password"></td> </tr> <tr> <td>Gender :</td> <td> <input type="radio" name="Gender"> Male <input type="radio" name="Gender"> Female </td> </tr> <tr> <td>Email :</td> <td><input type="email"></td> </tr> <tr> <td>Phone no :</td> <td> <select> <option>977</option> <option>978</option> <option>979</option> <option>973</option> <option>972</option> <option>974</option> </select> <input type="phone"> </td> </tr> <tr> <td><input type="submit" value="Submit"></td> </tr> </table> </form> </body> </html>
Create Registration Form in HTML Step by Step Tutorial
In the above code, we use a <table> tag to format our form. Inside a table we use <tr> (table row) and <td> (table data). Where <tr> is used to make a row in a table and <td> is used to make a column on that row of the table.
We make our first row (lines 9 – 12) we make a column for name and its input field.
In a second row (line 13 – 17) we make a column for password and its input field.
After that, we make another row (line 18 – 23) we make a column for gender and make a radio button input field for gender.
(Line 24 – 27) We make another row for the email address.
(Line 28 – 41) Here we make a row for phone number input field and for a country code.
(Line 42 – 44) At last, we make a submit button.
And here we complete making our Registration form in HTML
The output of registration form code:

And this is how to create Registration Form in an HTML
Hand peck relevant post for you:
- How to connect HTML register form to MySQL database with PHP
- How to display data from a MySQL database into an HTML table using PHP
Share this content with your friend.
how do i make a server
No where but if you want to send data then you need server side language
Read this post
HTML form with database
where to put this script?
after writing this code, just save it in dot html extention
nice brother
No where but if you want to send data then you need server side language
how do i make a server
can you help me ? I am new to php and when adding a user I have the following error message:
prepare($SELECT);
$stmt->bind_param(“s”, $email);
$stmt->execute();
$stmt->bind_result($email);
$stmt->store_result();
$rnum = $stmt->num_rows;
if ($rnum==0) {
$stmt->close();
$stmt = $conn->prepare($INSERT);
$stmt->bind_param(“ssssii”, $username, $password, $gender, $email, $phoneCode, $phone);
$stmt->execute();
echo “New record inserted sucessfully”;
} else {
echo “Someone already register using this email”;
}
$stmt->close();
$conn->close();
}
} else {
echo “All field are required”;
die();
}
?>
I write the following HTML code but I don’t know, where it saves user’s data please explain.
HTML code is used to give the layout of a web page. To make that layout attractive, we use CSS. To make that web page interactive on the user side, we use JavaScript. These three (HTML, CSS, and JavaScript) are client-side programming languages.
Now to save user’s data, you also need a server-side programming language and a database.
I already make a video on How to connect registration forms using PHP and MySQL.
Hope this will help you.