20 lines
616 B
PHP
20 lines
616 B
PHP
<body>
|
|
<div>
|
|
<p><strong>Please enter your name and birthday:</strong></p>
|
|
<form name="form1" method="post" action="passingdata.php">
|
|
<span>
|
|
<label>Your name:
|
|
<input type="text" name="name">
|
|
</label>
|
|
<br>
|
|
<label>Your Birthday (in DD/MM/YY format):
|
|
<input type="text"
|
|
name="birthday" required>
|
|
</label>
|
|
<br>
|
|
<input type="submit" name="Submit" value="Submit">
|
|
<input type="reset" name="Submit2" value="Reset">
|
|
</span>
|
|
</form>
|
|
</div>
|
|
</body> |