I have no idea what it could be.
this is the form: in _form.php
<caption>All Fields Are Required</caption>
<table border="1">
<form action="form_complex_process.php" method="post">
<tr><td>Name:<input type="text" value"name" /><br /></td></tr>
<tr><td>Last Name: <input type="text" value"lastname" /></td></tr>
<tr><td>E-mail:<input type="text" value"email" /></td></tr>
</table>
<select name="dropdownbox">
<option value="chooseone" selected >--Choose one--</option>
<option value="webdesigner">Web Designer</option>
<option value="programmer">Programmer</option>
<option value="manager">Manager</option>
<option value="serveradministrator">Server Administrator</option>
</select>
<br />
<input type="radio" name="button1" value"subscribe" checked />I wish to subscribe
<input type="radio" name="button1" value"dontsubscribe" />No, I do not wish to subscribe
<input type="submit" value="Submit" />
</form>
this is where it is displayed: form_complex.php
include ("_form.php");
and the error reporting page: form_complex_process.php
<?
$len = 1;
$name = $_POST['name'];
print "<br />";
if(strlen($name) < $len) {
echo "The Name field has not been filled out";
include ("_form.php");
}
else {
echo " thanks for filling out our form" ;
}
?>
maybe this can help