Files
phpstorm/workshop2/index.php
2024-10-17 00:35:53 +01:00

20 lines
616 B
PHP
Executable File

<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>