I can, sure... but it works fine on 2 other servers just not this new one, so that's why I'm wondering about settings.
<form method="post" action="extrac_post.html">
<table cellpadding="2" cellspacing="2">
<tr bgcolor="ffffff"><td><p align="right"><b>Name of Event:</b> </td><td> <input type="text" name="ename" size=40 maxlength=200> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Date of Event:</b> </td><td> <input type="text" name="edate" size=40 maxlength=200> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Time of Event:</b> </td><td> <input type="text" name="etime" size=40 maxlength=200> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Location of Event:</b> </td><td> <input type="text" name="elocation" size=40 maxlength=200> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Directions to Event:</b> </td><td> <input type="text" name="edirections" size=40 maxlength=500> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Description of Event:</b> </td><td> <input type="text" name="edescription" size=40 maxlength=500> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Website:</b> </td><td> <input type="text" name="ewebsite" size=40 maxlength=200> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Contact Person:</b> </td><td> <input type="text" name="econtact" size=40 maxlength=200> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Contact Information:</b> </td><td> <input type="text" name="econtactinfo" size=40 maxlength=200> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Your Name: </b> </td><td> <input type="text" name="name" size=40 maxlength=200> </td> </tr>
<tr bgcolor="ffffff"><td><p align="right"><b>Your Email:</b> </td><td> <input type="text" name="email" size=40 maxlength=200> </td> </tr>
<tr> <td ColSpan="2"> </td> </tr>
<tr bgcolor="ffffff"> <td ColSpan="2"><b>Any additonal information you wish to include:</b>:<br><textarea rows="5" name="comments" cols="64" tabindex="1" maxlength=500></textarea> </td> </tr>
</table>
<p align="right"> <center><input type="submit" name="submit" value="Submit"> <input type="reset" value="Reset"></center> </form> </td></tr>
Next Page:
<?php
if ($submit) {
if ( ($name == "")||($email == "") ){
print "Fields missing, please hit the BACK button and try again. ";
} else{
$to = "blah@blah.com";
$subject = "Extracurricular Event";
$header = "From: $email";
$msg = "Name of Event: $ename\n";
$msg .= "Date: $dname\n";
$msg .= "Time: $etime\n";
$msg .= "Location: $elocation\n";
$msg .= "Directions: $edirections\n";
$msg .= "Description: $edescription\n";
$msg .= "Website: $ewebsite\n";
$msg .= "Contact Person: $econtact\n";
$msg .= "Contact Information: $econtactinfo\n\n";
$msg .= "Name: $name\n";
$msg .= "Email: $email\n\n";
$msg .= "Comments: $comments\n";
mail ($to, $subject, $msg, $header);
header('Location: extrac_thanks.html');
}
}
?>