2
0

add form for creating user, multiple ways to display conten of db

This commit is contained in:
Schuledaniel
2025-12-12 08:27:08 +01:00
parent e59c3c4e59
commit cb023b88de
2 changed files with 67 additions and 4 deletions

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>PDO Testset</h1>
<h2>Entry Form</h2>
<p>Please insert your data and press 'save'</p>
<form action = "pdo_test.php">
<label>Firstname:
<input name = "firstname">
</label><br>
<label>Lastname:
<input name = "lastname">
</label><br>
<label>Email:
<input name = "email">
</label><br>
<button>Save!</button>
</body>
</html>