08-04-2010, 11:34 PM
D'après se que tu m'a dit, j'ai fait ça :
Code PHP :
<?php
try
{
$bdd = new PDO('mysql:host=localhost;dbname=Ma_Base', 'root', '');
}
catch (Exception $e)
{
die('Erreur : ' . $e->getMessage());
}
$query = sprintf("SELECT bois FROM membres WHERE id = %d;", $_SESSION['id']);
$resource = mysql_query($query);
$data = mysql_fetch_assoc($resource);
?>
Puis j'affiche :
Code PHP :
<?php echo $resource; ?>