Voll Upload SGD Fachinformatiker PHP

This commit is contained in:
2026-06-03 13:46:32 +00:00
parent 1256ec2190
commit 84a568d89c
265 changed files with 9961 additions and 2 deletions
+44
View File
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<style>
.sign {
width: 250px;
border-top-style: dashed;
border-width: 3px;
font-family: arial, lucida console, sans-serif;
font-size: 12pt;
}
</style>
<title>Funktionen</title>
<?php
function signatur () //Funktionsdefinition
{
$name = "Christopher Münzer";
$strasse = "Bromberger Strasse 21";
$plz = "46145";
$ort = "Oberhausen";
echo "<div class='sign'>\n";
echo "<p>$name<br>\n";
echo "$strasse<br>\n";
echo "$plz $ort</p>\n";
echo "</div>\n";
}
?>
</head>
<body>
<?php
signatur(); //Funktionsaufruf
?>
</body>
</html>