This morning we found a problem with many pages of our website when trying to submit a form. If the form is located on the PHP page or is submitted to the PHP page, we will receive the error message "Error 324 (net :: ERR_EMPTY_RESPONSE)".
I have two examples. One HTML page representing itself, another PHP page representing itself.
http://fun2dip.com/query.html
http://fun2dip.com/query.php
The HTML page is sent without problems, the PHP page gets the above error. Pages are identical except for their expansion. There is no PHP code on any page.
If I changed the FORM method to GET, both forms work.
Our host is GoDaddy. We tried to fix the problem with them. They tell us that this is a coding or scripting issue, and that everything at their end is OK. They cannot help us with this problem if we cannot describe the exact problem, which we obviously cannot, because we have no idea what it is.
Any help is appreciated.
Below is a version of PHP.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<form action="" method="POST">
<table border="0" cellpadding="2" cellspacing="0">
<tr>
<td align="right" class="str">Name: </td>
<td><input type="text" name="Name" size="30"></td>
</tr>
<tr>
<td align="right" class="str">E-mail: </td>
<td><input type="text" name="Email" size="30"></td>
</tr>
<tr>
<td align="right" colspan="2"> </td>
</tr>
<tr>
<td align="center" colspan="2"><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</body>
</html>
source
share