Here is the problem...
I a using a form with and when I go to validate the page at w3.org, I keep getting an error. Here is the error message...
Line 143, Column 130: document type does not allow element "input" here; missing one of "p", "h1", "h2", "h3", "h4", "h5", "h6", "div", "pre", "address", "fieldset", "ins", "del" start-tag .
…="2220e2191459ffd5fe7147301a0cdd77" />
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
And the error code...
<form id='ContactForm' action=' ' method='post'><input type="hidden" name="PHPSESSID" value="2220e2191459ffd5fe7147301a0cdd77" />
The actual code is...
<form id='ContactForm' action='<?php $PHP_SELF; ?>' method='post'>
<table id='DepartmentTable' cellpadding='0' cellspacing='0' width='600px' border='0'>
I have tried echo-ing the form tag, changing the $PHP_SELF to contactus.php, putting the form inside the table. I am at a total loss here.....
And some links...
To the live page - http://www.yuchniuk.com/contactus.php
The validator - http://validator.w3.org
MY coding - http://www.yuchniuk.com/contactus.txt
And finally the form - http://www.yuchniuk.com/contactusform.txt
Thanks in advance.