1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <?php
header('Content-type: text/xml');
$link = mysql_connect('localhost', 'theblack', 'zvmd93g');
if (!$link) { die('Connexion impossible : ' . mysql_error()); }
$db_selected = mysql_select_db('theblack', $link);
if (!$db_selected) { die ('Impossible de sélectionner la base de données : ' . mysql_error()); }
$query = "SELECT * FROM `utilisateurs`";
$result = mysql_query($query);
echo '<?xml version="1.0" encoding="ISO-8859-1"?>';
echo '<utilisateurs>';
while ($row= mysql_fetch_object($result)) :
?>
<player>
<id><?php echo $row->id_utilisateur ?></id>
<loggin><?php echo htmlentities($row->loggin) ?></loggin>
<name><?php echo htmlentities($row->password) ?></name>
</player>
<?php
endwhile;
echo '</utilisateurs>';
?> |
Partager