Cette fois c'est l'inverse aucunes question ne s'affiche quelque soit le theme voici le code complet:
Syntaxe: [ Télécharger ] [ Masquer ] [ Sélectionner ] [ Agrandir ]
Code php
<?php
try
{
$bdd = new PDO('mysql:host=localhost;dbname=test', 'root', 'root');
}
catch(Exception $e)
{
die('Erreur : '.$e->getMessage());
}
?>
<?php
$theme = htmlspecialchars($_GET['theme']);
$reponse = $bdd->query('SELECT theme.themes, theme.id, questions.Question FROM theme, questions WHERE themes.id = ' . $theme . ' AND questions.id_theme = themes.id');
while($donnees = $reponse->fetch()){
?>
<div id = "quest"> <?php echo $donnees['Question']; ?> </div>
<?php
}
?>
Message édité par Jacksons le 24-09-2010 à 21:38:17