yvettenoone14
New Member
- Messages
- 2
- Reaction score
- 0
- Points
- 0
Hi struggling to get a feedback form working - unsure of the code for the submit button. Just want feedback to come to my email. Can anyone help
Hi struggling to get a feedback form working - unsure of the code for the submit button. Just want feedback to come to my email. Can anyone help
tag
B - forms should have a method (in this example, post)
C - use $_SERVER['REQUEST_METHOD'] instead of isset($_POST..
D - why do you insist on not using spacing :(
[php]<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
$email = 'Email sent using feedback form on yoursite.' . "\n\n" . 'Name: ' . $_POST['name']; //etc...
$youremail = 'email@example.com';
mail($youremail, 'Feedback (subject)', $email, 'From: ' . $youremail);
}
else
{
?>
<form action="file.php" method="post">
<!-- inputs here -->
</form>
<?php
}