This commit is contained in:
boris
2025-02-06 12:30:01 +00:00
parent f30a8fe711
commit f64a9eadbe
176 changed files with 21418 additions and 0 deletions

20
php-s1/workshop2/index.php Executable file
View File

@@ -0,0 +1,20 @@
<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>