Guest upirate Posted April 3, 2007 Share Posted April 3, 2007 Below are the results of checking this document for XML well-formedness and validity. 1. Error Line 156 column 19: end tag for "select" which is not finished. </select> Most likely, You nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p> Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on. ************************************** My order of tags is correct Quote Link to comment https://forums.phpfreaks.com/topic/45373-page-not-validating-as-xhtml-because-of-select/ Share on other sites More sharing options...
Daniel0 Posted April 3, 2007 Share Posted April 3, 2007 We'll need the code. Quote Link to comment https://forums.phpfreaks.com/topic/45373-page-not-validating-as-xhtml-because-of-select/#findComment-220424 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.