echo "<u>Registration Form:</u><br/>";
echo "Username*:<br/>\n";
echo "<input type=\"text\" name=\"login$r\" maxlength=\"10\"/><br/>\n";
echo "Password*:<br/>\n";
echo "<input type=\"text\" name=\"pass$r\" maxlength=\"20\"/><br/>\n";
//echo "Re-type Password*:<br/>\n";
//echo "<input type=\"text\" name=\"pass2$r\" maxlength=\"20\"/><br/>\n";
echo "Security Code*:<br/>\n";
echo "<input type=\"text\" name=\"security$r\" maxlength=\"15\"/><br/>\n";
echo "Email*:<br/>";
echo "<input name=\"email$r\" type=\"text\" value=\"@\" maxlength=\"50\" emptyok=\"true\"/><br/>";
echo "<small>Sex*:</small><br/>";
echo "<select name=\"sex$r\" title=\"sex\"><option value=\"Male\">male</option><option value=\"Female\">female</option></select><br/>\n";
echo "<small>Date Of Birth: (DD-MM-YYYY)</small><br/>
<input size=\"2\" name=\"bday$r\" maxlength=\"2\" format=\"NN\"/>-<input size=\"2\" name=\"bmonth$r\" maxlength=\"2\" format=\"NN\"/>-<input size=\"4\" name=\"byear$r\" maxlength=\"4\" format=\"NNNN\"/><br/>";
echo "Location:<br/>\n";
echo "<input type=\"text\" name=\"live$r\" maxlength=\"15\"/><br/>\n";
Validation Output: 11 Errors
Line 2, Column 51: document type does not allow element "input" here
<input type="text" name="login5677" maxlength="10"></input><br/>
✉
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
BUT I CAN ABLE TO REGISTER WITH MOST PHONES AND PC BUT SOME PEOPLE ARE HAVING PROBLEM WITH IT WHEN THEY CLICK AGREE AFTER THE REGISTRATION RULES IT SHOWS LIKE PAGE ERROR PAGE NOT REPONDING OR SOMETHING LIKE THIS SO WHAT TO SOLVE THE PROBLEM .
IF NEEDED I WILL PROVIDE THE FULL REG PAGE
echo "Username*:<br/>\n";
echo "<input type=\"text\" name=\"login$r\" maxlength=\"10\"/><br/>\n";
echo "Password*:<br/>\n";
echo "<input type=\"text\" name=\"pass$r\" maxlength=\"20\"/><br/>\n";
//echo "Re-type Password*:<br/>\n";
//echo "<input type=\"text\" name=\"pass2$r\" maxlength=\"20\"/><br/>\n";
echo "Security Code*:<br/>\n";
echo "<input type=\"text\" name=\"security$r\" maxlength=\"15\"/><br/>\n";
echo "Email*:<br/>";
echo "<input name=\"email$r\" type=\"text\" value=\"@\" maxlength=\"50\" emptyok=\"true\"/><br/>";
echo "<small>Sex*:</small><br/>";
echo "<select name=\"sex$r\" title=\"sex\"><option value=\"Male\">male</option><option value=\"Female\">female</option></select><br/>\n";
echo "<small>Date Of Birth: (DD-MM-YYYY)</small><br/>
<input size=\"2\" name=\"bday$r\" maxlength=\"2\" format=\"NN\"/>-<input size=\"2\" name=\"bmonth$r\" maxlength=\"2\" format=\"NN\"/>-<input size=\"4\" name=\"byear$r\" maxlength=\"4\" format=\"NNNN\"/><br/>";
echo "Location:<br/>\n";
echo "<input type=\"text\" name=\"live$r\" maxlength=\"15\"/><br/>\n";
Validation Output: 11 Errors
Line 2, Column 51: document type does not allow element "input" here
<input type="text" name="login5677" maxlength="10"></input><br/>
✉
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
BUT I CAN ABLE TO REGISTER WITH MOST PHONES AND PC BUT SOME PEOPLE ARE HAVING PROBLEM WITH IT WHEN THEY CLICK AGREE AFTER THE REGISTRATION RULES IT SHOWS LIKE PAGE ERROR PAGE NOT REPONDING OR SOMETHING LIKE THIS SO WHAT TO SOLVE THE PROBLEM .
IF NEEDED I WILL PROVIDE THE FULL REG PAGE
Comment