Bonjour,
J'ai un petit soucis avec un fichier xml et une dtd
j'ai l'impression que la dtd n'est pas prise en compte par la dtd externe
voici mon code source
xml
DTD
quand j'enleve par exemple dans le premier produit , la balise produit , le xml est afficher correctement
merci de m'éclaircir
J'ai un petit soucis avec un fichier xml et une dtd
j'ai l'impression que la dtd n'est pas prise en compte par la dtd externe
voici mon code source
xml
<?xml version="1.0" encoding="iso-8859-1" standalone="no" ?>
<!DOCTYPE stock SYSTEM "test.dtd">
<stock>
<produit>
<nom> Livre </nom>
<prix monnaie="Francs"> 50 </prix>
<comment> Un article très recherché </comment>
</produit>
<produit>
<nom> CD </nom><prix monnaie="Euros"> 23 </prix>
</produit>
</stock>
DTD
<!ELEMENT stock (produit+)>
<!ELEMENT produit (nom,prix,comment?)>
<!ELEMENT nom (#PCDATA)>
<!ELEMENT prix (#PCDATA)>
<!ATTLIST prix monnaie (Euros|Francs) #IMPLIED >
<!ELEMENT comment (#PCDATA)>
quand j'enleve par exemple dans le premier produit , la balise produit , le xml est afficher correctement
merci de m'éclaircir