Jump to content

Can somebody help me find the wrong code?


Rubag

Recommended Posts

the keywords are in dutch so don't look at that. The page is a register page.

 

 

 

<html>

<head>

<title>Create Profile</title>

<link rel="stylesheet" href="css/structuur.css">

<link rel="stylesheet" href="css/menubalk.css">

<?php

include("connect.php");

?>

</head>

<body >

<header>

<h2 class="header1"> Star Wars profiler </h2>

 

</header>

<nav>

<ul id="nav-one" >

<li><a href="show_profile.php">Show profile</a></li>

<li><a href="search_profile.php"> Search profile</a></li>

</ul>

</nav>

<section>

<table class="pagina3" width="100%" height="100%" cellpadding="10">

<tr>

<td colspan="2"><div align="center"><strong>Vul onderstaande gegevens in en creeër je profiel</strong></div></td> 

</tr>

<tr>

<td height="100%">

<div align="center">

<form action="create.php" method="POST">

<table class="pagina2" width="100%" height="100%" cellpadding="10">

<tr>

<td valign="bottom">Gebruikersnaam: </td>

<td><input type="Text" minlenght="6" name="gebruikersnaam"></td>

</tr>

<tr>

<td valign="bottom">Wachtwoord: </td>

<td><input type="password" name="wachtwoord"></td>

</tr>

<tr>

<td valign="bottom">Opnieuw wachtwoord: </td>

<td><input type="password" name="wachtwoord2"></td>

</tr>

<tr>

<td valign="bottom">Voornaam: </td>

<td><input type="Text" name="voornaam"></td>

</tr>

<tr>

<td valign="bottom">Tussenvoegsel: </td>

<td><input type="Text" name="tussenvoegsel"></td>

</tr>

<tr>

<td valign="bottom">Achternaam: </td>

<td><input type="Text" name="achternaam"></td>

</tr>

<tr>

<td valign="bottom">Leeftijd: </td>

<td><input type="Number" name="leeftijd" min="1" max="150" ></td>

</tr>

<tr>

<td valign="bottom"> Wapen </td>

<td>

<select name="wapen" size="1">

<option>none</option>

<option>Pistool</option>

<option>LightSaber</option>

</select>

</td>

</tr>

<tr>

<td valign="bottom"> Model </td>

<td valign="bottom">indien lightsaber gekozen kies: none</td>

<td>

<select name="model" size="1">

<option>none</option>

<option>E-11</option>

<option>A280c</option>

<option>DH-17</option>

<option>DL-44</option>

<option>DLT-19</option>

<option>DLT-19x</option>

</select>

</td>

</tr>

<tr>

<td valign="bottom"> lightsaber kleur </td>

<td valign="bottom">indien pistool gekozen kies: none</td>

<td>

<select name="ls_color" size="1">

<option>none</option>

<option>blauw</option>

<option>groen</option>

<option>paars</option>

<option>rood</option>

</select>

</td>

</tr>

<tr>

<td valign="bottom"> factie </td>

<td>

<select name="faction" size="1">

<option>none</option>

<option>Republic</option>

<option>CSI</option>

<option>Empire</option>

<option>Rebel</option>

<option>Resistance</option>

<option>First Order</option>

</select>

</td>

</tr>

<tr>

<td valign="bottom"><input type="submit"

name="submit" value="Registreer"></td>

</tr>

</table>

</form>

</div>

</td>

</tr>

</table>

</section>

<footer>

 

</footer>

</body>

</html>

Link to comment
Share on other sites

Well, your HTML is a wreck. Your also not doing any PHP other than potentially setting up a database connection.

Notes and Potential Issues

The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation, or other things affecting the output below. If the guess or fallback is incorrect, it could make validation results entirely incoherent. It is highly recommended to check these potential issues, and, if necessary, fix them and re-validate the document.

  1. Unable to Determine Parse Mode!

    The validator can process documents either as XML (for document types such as XHTML, SVG, etc.) or SGML (for HTML 4.01 and prior versions). For this document, the information available was not sufficient to determine the parsing mode unambiguously, because:

    • in Direct Input mode, no MIME Media Type is served to the validator
    • No known Document Type could be detected
    • No XML declaration (e.g <?xml version="1.0"?>) could be found at the beginning of the document.
    • No XML namespace (e.g <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> ) could be found at the root of the document.

    As a default, the validator is falling back to SGML mode.

  2. No DOCTYPE found! Checking with default HTML 4.01 Transitional Document Type.

    No DOCTYPE Declaration could be found or recognized in this document. This generally means that the document is not declaring its Document Type at the top. It can also mean that the DOCTYPE declaration contains a spelling error, or that it is not using the correct syntax.

    The document was checked using a default "fallback" Document Type Definition that closely resembles “HTML 4.01 Transitional”.

    Learn how to add a doctype to your document from our FAQ.

  3. No Character encoding declared at document level

    No character encoding information was found within the document, either in an HTML meta element or an XML declaration. It is often recommended to declare the character encoding in the document itself, especially if there is a chance that the document will be read from or saved to disk, CD, etc.

    See this tutorial on character encoding for techniques and explanations.

  4. Using Direct Input mode: UTF-8 character encoding assumed

    Unlike the “by URI” and “by File Upload” modes, the “Direct Input” mode of the validator provides validated content in the form of characters pasted or typed in the validator's form field. This will automatically make the data UTF-8, and therefore the validator does not need to determine the character encoding of your document, and will ignore any charset information specified.

    If you notice a discrepancy in detected character encoding between the “Direct Input” mode and other validator modes, this is likely to be the reason. It is neither a bug in the validator, nor in your document.

↑ Top

Validation Output: 10 Errors
  1. Line 1, Column 1: no document type declaration; implying "<!DOCTYPE HTML SYSTEM>"
    <html>

    The checked page did not contain a document type ("DOCTYPE") declaration. The Validator has tried to validate with a fallback DTD, but this is quite likely to be incorrect and will generate a large number of incorrect error messages. It is highly recommended that you insert the proper DOCTYPE declaration in your document -- instructions for doing this are given above -- and it is necessary to have this declaration before the page can be declared to be valid.

  2. Line 8, Column 16: element "HEADER" undefined
            <header>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  3. Line 12, Column 13: element "NAV" undefined
            <nav>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  4. Line 18, Column 17: element "SECTION" undefined
            <section>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).
  5. Line 19, Column 56: there is no attribute "HEIGHT"
                <table class="pagina3" width="100%" height="100%" cellpadding="10">

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  6. Line 30, Column 74: there is no attribute "MINLENGHT"
    …               <td><input type="Text" minlenght="6" name="gebruikersnaam"></td>

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  7. Line 54, Column 64: value of attribute "TYPE" cannot be "NUMBER"; must be one of "TEXT", "PASSWORD", "CHECKBOX", "RADIO", "SUBMIT", "RESET", "FILE", "HIDDEN", "IMAGE", "BUTTON"
    …               <td><input type="Number" name="leeftijd" min="1" max="150" ></t…

    The value of the attribute is defined to be one of a list of possible values but in the document it contained something that is not allowed for that type of attribute. For instance, the “selected” attribute must be either minimized as “selected” or spelled out in full as “selected="selected"”; a value like “selected="true"” is not allowed.

  8. Line 54, Column 86: there is no attribute "MIN"
    …              <td><input type="Number" name="leeftijd" min="1" max="150" ></td>

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  9. Line 54, Column 94: there is no attribute "MAX"
    …              <td><input type="Number" name="leeftijd" min="1" max="150" ></td>

    You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.

  10. Line 119, Column 16: element "FOOTER" undefined
            <footer>

    You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:

    • incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Frameset" document type to get the "<frameset>" element),
    • by using vendor proprietary extensions such as "<spacer>" or "<marquee>" (this is usually fixed by using CSS to achieve the desired effect instead).
    • by using upper-case tags in XHTML (in XHTML attributes and elements must be all lower-case).

 

Link to comment
Share on other sites

I see that in the inner table (that holds the form) most of the rows contain two cells (i.e. TDs). However, there are a couple rows at the end that have three cells. If you are seeing some anomaly in the layout, it could be due to this. You should use the same number of cells per row or use rowspan on certain cells within a row that won't have the maximum number. When I am using any tables on a page, I will always set them with a border when developing the layout so I can "see" the table - then remove the border when I'm done if one is not wanted.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.