Php mysql

Fermé
ezrt - 11 nov. 2007 à 12:44
 ezrt - 11 nov. 2007 à 15:00
Bonjour voici mon code
<html>
<header>
<title>Liste des publications</title>
</header>

<body>

<center>
<table border="1" cellpadding="0" cellspacing="0">
<tr>

<th>matricule</th>
<th>nom</th>
<th>prenom</th>
<th>clode</th>
</tr>
<?php
// Créer connexion et sélectionner la bonne db
$connect=mysql_connect("127.0.0.1","root","kankan");
mysql_select_db("inscr",$connect);
// Liste tous les auteurs
$aut=mysql_query("SELECT etudiant.et_mat, etudiant.et_nom, etudiant.et_prenom, classe.cl_code
FROM etudiant INNER JOIN (classe INNER JOIN inscription ON classe.cl_code = inscription.cl_code) ON
etudiant.et_mat = inscription.et_mat
WHERE (((inscription.session)='06') AND ((classe.cl_niveau)='1')))");

while($etut = mysql_fetch_row($aut))
{$mat = $etut[0];
$nom = $etut[1];
$prenom = $etut[2];
$clcode = $etut[3];
print("<TR><TD>$mat</TD><TD>$nom</TD><TD>$prenom</TD><TD>$clcode</TD></TR>n");
}
// Fermer la connexion
mysql_close($connect)
?>


et Voici l'erreur

Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in D:projetWWWetudiant.php on line 27
merci de votre aide
A voir également:

3 réponses

warlix Messages postés 1201 Date d'inscription mercredi 25 juillet 2007 Statut Contributeur Dernière intervention 21 février 2009 288
11 nov. 2007 à 12:47
salut

normal le


D:projetwwwwetudiant.php ?

je pense à un soucis de source non ?
tu travails avec quoi ?
en local ? online ?
0
Bonjour,
j'ai configuré
apache_2.0.59-win32-x86-no_ssl
mysql-essential-5.0.45-win32
php-5.2.4-Win32
phpMyAdmin-2.11.2-all-languages
sous windows xpspII
merci
0
je travail en local
merci
0

Discussions similaires