Forum de discussion
Forum « Programmation XML et XSL » (archives)
question de debutant
Envoyé: 14 septembre 2004, 13h29 par layer
<?xml version="1.0" ?>
<racine>
<employe>
<nom>segovia</nom>
<prenom>paco</prenom>
<age>22</age>
<ville>haity</ville>
<gsm >
</employe>
</racine>
j ai enregistré : employe.xml
puis je veus faire inserer ces données dans une page html
j ai fais
<html>
<head>
</head>
<body>
liste des employés :
<xml id="page" src="emlploye.xml"></xml>
<table border="1" datascr="#page">
<tr>
<td><span datafld="nom"></span></td>
<td><span datafld="prenom"></span></td>
<td><span datafld="age"></span></td>
<td><span datafld="ville"></span></td>
<td><span datafld="gsm"></span></td>
</tr>
</table>
</body>
</html>
mais ca marche pas le truc
page c est le nom de la page html
merci
Réponses
|