-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration_form.php
39 lines (39 loc) · 1.49 KB
/
registration_form.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
<?php include 'includes/head.php'?>
<?php session_start(); ?>
</head>
<body>
<div id="container">
<form id="register" action="register.php" method="post">
<h1> Register Here </h1>
<table>
<tr>
<td>Name:</td>
<td><input type="text" name="name" value="<?php echo $_SESSION['name']?>"></td>
</tr>
<tr>
<td>Hometown:</td>
<td><input type="text" name="hometown" value="<?php echo $hometown?>"></td>
</tr>
<tr>
<td>Gender (M/F):</td>
<td><input type="text" name="gender"value="<?php echo $gender?>"></td>
</tr>
<tr>
<td>Phone Number: </td>
<td><input type="text" name="phone_number" value="<?php echo $phone_number?>"></td>
</tr>
<tr>
<td>Mom's Name: </td>
<td><input type="text" name="moms_name" value="<?php echo $moms_name?>"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="submit" value="Submit!"></td>
</tr>
</table>
</form>
</div>
</body>
</html>