Cory94bailly Posted May 16, 2008 Share Posted May 16, 2008 http://validator.w3.org/check?uri=http%3A%2F%2Ffcs.etsoldiers.com%2Flogin.php&charset=%28detect+automatically%29&doctype=Inline&ss=1&outline=1&group=0&No200=1&verbose=1 Well theres the link leading to a html validator... It's saying some weird stuff like this: # Error Line 59, Column 50: end tag for "input" omitted, but OMITTAG NO was specified . <input type="text" name="username" maxlength="40"> ✉ You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">". Can I get some help with validating this page? I just validated 3 or 4 other pages on my site and it was pretty easy soo... (Also, it shows you my Source at the bottom of the page) Link to comment https://forums.phpfreaks.com/topic/105973-solved-weird-invalid-html/ Share on other sites More sharing options...
rhodesa Posted May 16, 2008 Share Posted May 16, 2008 Every tag must be "closed". Tags that don't have a separate close tag (like INPUT, BR, HR) are supposed to have a / at the end like so: <input type="text" name="username" maxlength="40" /> Link to comment https://forums.phpfreaks.com/topic/105973-solved-weird-invalid-html/#findComment-543098 Share on other sites More sharing options...
Cory94bailly Posted May 16, 2008 Author Share Posted May 16, 2008 Every tag must be "closed". Tags that don't have a separate close tag (like INPUT, BR, HR) are supposed to have a / at the end like so: <input type="text" name="username" maxlength="40" /> Oh, stupid me =/ Thanks! Link to comment https://forums.phpfreaks.com/topic/105973-solved-weird-invalid-html/#findComment-543101 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.