Initial commit

This commit is contained in:
2020-01-04 20:41:09 +01:00
commit 150d0179fc
1328 changed files with 186900 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
ob_start();
?>
<html>
<head>
</head>
<body>
<div><b>Name</b>: <?php echo $values["name"]; ?></div>
<div><b>E-mail</b>: <?php echo $values["email"]; ?></div>
<div><b>Message</b>: <?php echo nl2br($values["message"]); ?></div>
</body>
</html>
<?php
$content = ob_get_contents();
ob_end_clean();
return($content);
?>