Realpascal |
07-15-2005 01:09 AM |
Need some help with this little PHP script
It won't work with me.. am I overlooking something here ?
Form:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Contact Us</title>
<head></head>
<body>
<FORM METHOD=post ACTION="contactform.php">
<p> </p>
<p> </p>
<p> </p>
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
<td><div align="right">
<p><img src="bel_small.gif" width="250" height="79" border="0"></p>
<p> </p>
<p> </p>
</div></td>
</tr>
<tr>
<td colspan="2">
<table width="600" border="0" align="center" cellpadding="2" cellspacing="0">
<tr>
<td colspan="2"><span class="style1">Contact us here </span></td>
</tr>
<tr>
<td width="83"> </td>
<td width="417"> </td>
</tr>
<tr>
<td><span class="style2">Name</span></td>
<td><input type="text" name="name" size="40"></td>
</tr>
<tr>
<td><span class="style3">Email</span></td>
<td><input type="text" name="email" size="40"></td>
</tr>
<tr valign="top">
<td><span class="style3">Comment </span></td>
<td><textarea name="comment" cols="60" rows="10"></textarea></td>
</tr>
<tr>
<td> </td>
<td>
<div align="center">
<input type="submit" name="Submit">
</div></td>
</tr>
</table>
</td>
</tr>
</table>
<p align="right"> </p>
<p align="right"> </p>
<p align="right"> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</body>
</html>
PHP mailscript
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head></head>
<title>Contact Result</title>
<body>
<div align="center">
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2"><div align="center"><img src="bel_small.gif" width="250" height="79" border="0"></div></td>
</tr>
</table>
<hr align="center" width="800">
<?php
$formsent = mail("[email protected]", "Info req", "Submit by: $name\r\nEmail: $email\r\nComment: $comment");
if($formsent hahahaha 1)
{
print("<p>Your comment has been sent. We will reply soon.</p>");
}
else
print("<p>Sorry, there's something wrong with the submitted form. Please try again</p>");
?>
</div>
</body>
</html>
Please help me out here.. :error
|