2
0

add files of code before my time in the class

This commit is contained in:
Schuledaniel
2025-11-18 13:35:07 +01:00
parent 861ebfbe3d
commit 4632ceaac0
23 changed files with 970 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
<!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>
<?php
ini_set("display_errors", "on");
// file: data_evaluate.php
// required fields
if( empty($_REQUEST['lastname']) ||
empty($_REQUEST['password']) ||
empty($_REQUEST['email'])) {
echo "<p>All required fields must be filled in</p>";
}
else {
// required fields
$lastname = $_REQUEST['lastname'];
$country = $_REQUEST['country'];
$email = $_REQUEST['email'];
$favs = $_REQUEST['favs'];
// optional fields
$firstname = empty($_REQUEST['firstname']) ? "n.a." : $_REQUEST['firstname'];
$dob = empty($_REQUEST['dob']) ? "n.a." : $_REQUEST['dob'];
echo "<h2>Your data:</h2>";
echo "<p>";
echo "<strong>First Name:</strong> $firstname<br>";
echo "<strong>Last Name:</strong> $lastname<br>";
echo "<strong>Email:</strong> $email<br>";
echo "<strong>Country:</strong> $country<br>";
echo "<strong>Date Of Birth:</strong> $dob<br>";
echo "<strong>Favorites:</strong><br>";
if(!empty($_REQUEST["favs"]) && is_array($_REQUEST["favs"])) {
echo "<ul>";
$favs = $_REQUEST["favs"];
foreach($favs as $fav) {
echo "<li>$fav</li>";
}
echo "</ul>";
}
else {
echo "n.a<br>";
/*
echo "<pre>";
print_r($favs);
echo "</pre>";
*/
//echo "<strong>Favorites:</strong> $favs<br>";
echo "</p>";
}
}
?>
</body>
</html>

View File

@@ -0,0 +1,97 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Template</title>
<style>
html {
font-size: 16px;
}
div.form-row {
background: silver;
padding: .2rem;
margin: .2rem;
}
label {
display: inline-block;
width: 7rem;
}
label::after {
content: ":";
}
form {
border: 1px solid black;
}
button {
width: 100%;
}
input[required] {
background: rgba(31, 225, 232, 0.2);
border: 1px solid #003366;
}
</style>
</head>
<body>
<form action = "data_evaluate.php">
<div class = "form-row">
<label for = "fn">First Name</label>
<input id = "ln" name = "firstname" placeholder = "Hans" title = "Please insert your first name here!">
</div>
<div class = "form-row">
<label for = "ln">Last Name</label>
<input id = "ln" name = "lastname" placeholder = "Mustermann" required>
</div>
<div class = "form-row">
<label for = "pw">Password</label>
<input id = "pw" name = "password" type = "password" required>
</div>
<div class = "form-row">
<label for = "email">Email</label>
<input id = "email" name = "email" type = "email" placeholder = "me@mydomain.com" required>
</div>
<div class = "form-row">
<label for = "dob">Date of Birth</label>
<input id = "dob" name = "dob" type = "date">
</div>
<div class = "form-row">
<label for = "country">Country</label>
<select id = "country" name = "country">
<option>n.a.</option>
<option>Germany</option>
<option>United States Of America</option>
<option>United Kingdom</option>
</select>
</div>
<div class = "form-row">
<label for = "favs">Favorits</label>
<select id = "favs" name = "favs[]" multiple>
<option>web engineering</option>
<option>music</option>
<option>sports</option>
<option>bing watching</option>
</select>
</div>
<div class = "form-row">
<button>Go!</button>
</div>
</form>
</body>
</html>

View File