o problema in php mysql
Scris: Mar Oct 26, 2010
ma codul si imi da eroarea asta Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\proiect_facultate\rezultate.php on line 92 si nu stiu ce este si nu stiu cum sa ii fac acolo unde sunt .... te rog ajuta-ma. cu stima trif
Cod: Selectaţi tot
<?php
$utilizator=mysql_real_escape_string($_GET['matricol']);
$cerereSQL = 'SELECT materii.disciplina, note.nota, materii.an FROM `materii, note` WHERE note.id_materie = materii.id_materie AND note.matricol="'.$_GET['matricol'].'"';
$result=mysql_query($cerereSQL);
$num=mysql_num_rows($result);
if ( $num <> 0 )
{
echo '<table border="1" width="450" bgcolor="#8FBEF8">';
echo '<tr> <th> An Studiu 2 (2009)</th> </tr>';
echo '</tabel>';
echo '<table border="1" width="450" >';
echo '<tr> <th> Disciplina</th> <th> Nota</th></tr>';
$i=0;
while ($i < $num)
{
$rand=mysql_fetch_array($result);
echo '...';
++$i;
}
}
echo '</tabel>';