If I where you I would try to change this code:
Code:
if ($result && mysql_num_rows($result)>0)
{
while ($rows = mysql_fetch_array($result))
{
echo $rows['drezha']."<br>";
}
}else{
echo "nothing found";
}
to something like
Code:
if (mysql_num_rows($result) == 0)
{
echo "nothing found";
}
while ($rows = mysql_fetch_array($result))
{
echo $rows['drezha']."<br>";
}
Also make sure you got something in the database to display.
/Andreas