summaryrefslogtreecommitdiff
path: root/php/01-common-theme/contact-process.php
blob: 20181f8b7caf1e76f5d0aae06363b0bd88fdeb6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

// Do the processing
$subject = $_POST['subject'];
$message = $_POST['message'];

// Send an email
// ...


include "common/header.php";

?>

<p>Thank you! Your message with the subject "<?= htmlspecialchars($subject) ?>" was received successfully.</p>

<?php

include "common/footer.php";