diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-04-05 15:37:11 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-04-05 15:37:11 +0530 |
| commit | 46d89228ed7a577628dc8c37c2e72161e39ec0a4 (patch) | |
| tree | 8a6a688ee6a8edda064a1d526de237fa48ddc969 /php/01-common-theme/contact-process.php | |
| parent | 5b6b5b62a0dfd4525db9a97a52634d1f8bb8e19c (diff) | |
Diffstat (limited to 'php/01-common-theme/contact-process.php')
| -rw-r--r-- | php/01-common-theme/contact-process.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/php/01-common-theme/contact-process.php b/php/01-common-theme/contact-process.php new file mode 100644 index 0000000..20181f8 --- /dev/null +++ b/php/01-common-theme/contact-process.php @@ -0,0 +1,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"; + |
