Hi,
I have this strange problem, I select some data from the database, there is no problem in the query and even when I use mysql_num_rows on the query it gives me the right number of entries in the table I'm selecting from, but when I try to echo every row it echos empty values... what is the problem??
$sql = "SELECT * FROM table";
$query = mysql_query($sql) or die(mysql_error());
$row_number = mysql_num_rows($query);
while ($row = mysql_fetch_array($query))
{
echo "row= ".$row["id"];
}