Een fout tijdens validatie bij w3.org

Status
Niet open voor verdere reacties.

coskun1990

Gebruiker
Lid geworden
23 dec 2007
Berichten
31
Beste mensen,

ik ben bezig om een site te maken en wil dat het ook valide is. Maar ik heb een probleem, namelijk ik krijg een foutmelding bij de volgende regel:

Code:
<select name="aanhef" id="aanhef" value="<?php echo $aanhef; ?>"><option>Dhr.</option><option>Mevr.</option></select>

ik gebruik XHTML 1.0 Transitional.

Dit is de foutmelding die ik krijg:

Line 52, Column 47: there is no attribute "value"
…elect name="aanhef" id="aanhef" value=""><option>Dhr.</option><option>Mevr.</o…

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.

Hoe kan ik dit oplossen?

Dit is een onderdeel van een formulier, waarbij de gebruiker dan verplicht is aan te geven of hij/zij een man of vrouw is.

Alvast bedankt,

Coskun
 
De select tag heeft geen attribuut met de naam "value". Om deze fout op te lossen moet je dat attribuut weghalen.
 
bedankt.

heb het volgende gedaan:

Code:
<select name="aanhef" id="aanhef" ><option value="Heer">Dhr.</option><option value="Mevrouw">Mevr.</option></select>

nu is het valide.
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan