register page problem

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    register page problem

    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

    #2
    ur missing
    Code:
    echo "<form action=\"pagename.php\" method=\"post\">";
    at the start of the form and </form> at the end
    Creator of
    Epix.Mobi

    Keep an Eye on us Big things coming soon!!!!
    Need something for your site hit me up here

    http://coding-talk.com/forum/main-fo...r-your-wapsite

    Comment


      #3
      aila...mast ho jayega boss..2admin@in.com

      Comment


        #4
        echo "<small><anchor>&#187;Register";
        echo "<go method=\"post\" href=\"register.php\">";
        echo "<postfield name=\"login\" value=\"$(login$r)\"/>";
        echo "<postfield name=\"security\" value=\"$(security$r)\"/>";
        echo "<postfield name=\"pass\" value=\"$(pass$r)\"/>";
        echo "<postfield name=\"pass2\" value=\"$(pass2$r)\"/>";
        echo "<postfield name=\"name\" value=\"$(name$r)\"/>";
        echo "<postfield name=\"live\" value=\"$(live$r)\"/>";
        echo "<postfield name=\"sex\" value=\"$(sex$r)\"/>";
        echo "<postfield name=\"email\" value=\"$(email$r)\"/><postfield name=\"byear\" value=\"$(byear$r)\"/>
        <postfield name=\"bday\" value=\"$(bday$r)\"/>
        <postfield name=\"bmonth\" value=\"$(bmonth$r)\"/>";
        echo "<postfield name=\"sid\" value=\"".session_id()."\"/>\n";
        echo "<postfield name=\"ref\" value=\"$(ref$r)\"/>\n";
        echo "<postfield name=\"number\" value=\"$number\"/>\n";
        echo "</go>";
        echo "</anchor><br/>";

        its like this but still problem

        Comment


          #5
          I am using wml but it shows error and a lot of users cant register.So anybody can help

          Comment

          Working...
          X