How are you today?
I have a problem. I talk with my hoster GODADDY they tell me its scripting problem. you can visit http://ministriesofaidesinternational.org/test/MyForm.html
Below is the code
MyForm.html
<form action="guest.php" method="POST">
<table border="0">
<tr>
<td>Your Name:</td>
<td><input type="text" maxlenght="12" size="20" name="user"></td>
</tr>
<tr>
<td>E mail address:</td>
<td><input type="text" maxlength="12" size="20" name="mail"></td>
</tr>
<tr>
<td><input type="submit" value="Submit details"></td>
<td><input type="reset" value="Reset the form"></td>
</tr>
</table>
</form>
guest.php
<table border="0">
<tr>
<th>Your name:
<td><?php echo $_POST['user'];?></td>
</tr>
<tr>
<th>Your e-mail address:</th>
<td><?php echo $_POST['mail'];?></td>
</tr>
</table>
Can anyone tell me why godaddy will not pick you the info it needs to or whats wrong with the code?