I’m new to coding and the likes. I set up a form using http://www.kirupa.com/web/php_contact_form4.htm and it worked for the basic info. However when I put in all the info I needed it doesn’t send the email ordisplay anything once you hit submit.
My contact.html form is:
<form method=“POST” action=“mailer.php”>
<table border=“0”>
<tr>
<td>
Name
</td>
<td>
<input type=“text” name=“name” value=“type name here” />
</td>
</tr>
<tr>
<td>
Contact Number
</td>
<td>
<input type=“text” name=“contact” value=“type number here” />
</td>
</tr>
<tr>
<td>
Email
</td>
<td>
<input type=“text” name=“email” value=“type email here” />
</td>
</tr>
<tr>
<td>
Required date
</td>
<td>
<input type=“text” name=“date” value=“dd/mm/yy” />
</td>
</tr>
<tr>
<td>
Please select
</td>
<td>
<!–pull-down menu–>
<select name=“drop_down”>
<option value=“school ball/disco”>School Ball/Disco</option>
<option value=“birthday”>Birthday</option>
<option value=“party”>Party</option>
<option value=“other”>Other</option>
</select>
</td>
</tr>
<tr>
<td>
Style of Music
</td>
<td>
<textarea name=“music” rows=“5” cols=“40”>what kind of music do you want to be played
</textarea>
</td>
</tr>
<tr>
<td colspan=“2”>
<input type=“submit” value=“Send” name=“submit”/>
</td>
</tr>
</table>
</form>
and the mailer.php:
<?php
if(isset($_POST[‘submit’])) {
$to = "neopets3010@hotmail.com";
$subject = “booking”;
$name_field = $_POST[‘name’];
$contact_field = $_POST{‘contact’};
$email_field = $_POST[‘email’];
$date_field = $_POST[‘date’];
$drop_down = $_POST[‘drop_down’];
$music = $_POST[‘music’];
foreach($_POST['check'] as $value) {
$check_msg .= "Checked: $value
";
$body = "From: $name_field
E-Mail: $email_field
Contact number: $contact_field
Drop-Down: $drop_down
Date required: $date_field
Music Style: $music
";
echo “Data has been submitted to $to!”;
mail($to, $subject, $body);
} else {
echo “We have encountered an error”;
}
?>
Please help me.
Thanks in advance