I had the following code up on a site, it was working fine, now all the forms on the site are not posting, i told the techs there and they are telling me its a coding problem, how ever i did not change anything on any of the servers.
The problem occurs on two servers for me, does anyone know why things would not work. the code never reaches the validation part. The form will work and post if i have it pass through to a seperate page though
ie in stead of post="#" i have post="proccessdata.php"
But i have a two whole sites i would have to redo and things were working and not modified at all.
Any help would be great
here is the code
<?php
if($submit)
{
VALIDATE FORM
SEND EMAIL
REDIRECT CLIENT
}//if
?>
<html>
<head>
<title>Wedding Invitation
</title>
</head>
<body bgcolor="#3C1E00" TEXT="#02B9AF">
<center>
<table width = '550'>
<tr>
<td>
<center>
<Font size = '+3' >wedding rsvp</font><br>
</center>
</td>
</tr>
<tr>
</tr>
<tr>
<td>
<form method="POST" action="#" name="rsvp">
<table border='0' cellpadding='3' cellspacing='3'>
<tr>
<td align='center'>
<font size='+1'>
<i>
M <INPUT NAME="Responedents Name" SIZE='50'>
<br>
e-mail:<input name="email" size='30'>
</i>
</font>
</td>
</tr>
<tr>
<td align='center'>
<font size='+1'>
<i>
<select name ="Attend" size = "1">
<option SELECTED value = "will">will
<option value = "will not">will not
</select>
attend
</i>
</font>
<font size='+1'>
<i>
number attending
<INPUT NAME="people" SIZE='5'>
</i>
</font>
</td>
</tr>
<tr>
<td align='center'>
<font size='+1'><i>
Comments:<BR>
<TEXTAREA NAME="comments" ROWS='3' COLS='60'></TEXTAREA>
</i></font>
</td>
</tr>
<tr>
<td align = 'center'>
You may <INPUT type="Submit" value="submit" name="submit">, or
<INPUT TYPE="reset" VALUE="reset this form"> if you want to start over.
</td>
</tr>
</table>
</form>
Directions to <a target=_blank href=./church.html> <font color='#6EADfF'>st. john the baptis parish</font></a>
Directions to <a target=_blank href=./art.html> <font color='#6EADfF'>the burlington art center</font></a>
</td>
</tr>
</table>
</center>
</body>
</html>