Posted by Dave on 06/03/05 14:54
can anyone tell me why this doesnt work.
i have a form page a php script but it doesnt work. i just get a page 405
error when i click send form
Any ideas?
form.php
<form method="POST" action="thanks.php">
Name: <input type="TEXT" name="name">
Email: <input type="TEXT" name="email">
<input type="SUBMIT" name="Submit" value="ok">
</form>
thanks.php
<SCRIPT LANGUAGE="php">
$email = $HTTP_POST_VARS[email];
$mailto = xxx@xxx.com;
$mailsubj = "Form submission";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS)) {
$mailbody .= "$key : $val\n"; }
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>
[Back to original message]
|