J'ai un petit problème de validation ...
Vous pouvez retrouver sur cette page ce que me dit le validateur w3c et le code source en entier.
En bref, l'erreur :
Code
Line 103, column 66: document type does not allow element "input" here; missing one of "ins", "del", "h1", "h2", "h3", "h4", "h5", "h6", "p", "div", "address", "fieldset" start-tag
...="text" class="quantite" name="quantite" value="" />
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
...="text" class="quantite" name="quantite" value="" />
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
Le morceau de code invalide :
Code
102: <form method="post" action="index.cfm?page=pan_ajouter&catproduit=1&idproduit=2&qt=1&CFID%3D809%26CFTOKEN%3D27379819">
103: <input type="text" class="quantite" name="quantite" value="" />
104: <input type="submit" value="Ajouter ce produit dans mon panier" />
105: </form>
103: <input type="text" class="quantite" name="quantite" value="" />
104: <input type="submit" value="Ajouter ce produit dans mon panier" />
105: </form>
Je ne comprends pas d'où vient le problème ...
Merci d'avance pour votre aide !