A voir également:
- [PHP] Config avec XML
- Xml viewer - Télécharger - Édition & Programmation
- Connaitre sa config pc - Guide
- Ms config - Guide
- Easy php - Télécharger - Divers Web & Internet
- Tester sa config pc - Guide
2 réponses
Bonjour,
en xml :
en php :
attention ton serveur doit accepter la fonction simplexml_load_file ()
-->http://php.net/manual/fr/function.simplexml-load-file.php
en xml :
<?xml version="1.0" encoding="utf-8"?> <xml> <bdd Titre="bdd" >blabla bdd</bdd> <loc Titre="loc">blabla loc</loc> </xml>
en php :
<?php $fichier = "dossier/nomfichier.xml"; if (file_exists($fichier)) { $xml = simplexml_load_file ($fichier); $xml_section = $xml->children(); foreach ($xml_section as $element) { echo "Attribut Titre:".$element["Titre"]." - contenus : $element.<br/>"; } } ?>
attention ton serveur doit accepter la fonction simplexml_load_file ()
-->http://php.net/manual/fr/function.simplexml-load-file.php
Utilisateur anonyme
20 mars 2011 à 01:58
20 mars 2011 à 01:58
Et commment uriliser cela pour que ca fonctionne dans une connexion mysql ??