Hi,

how can i do to test if the row number (record number) sent by
mysql_fetch_object is odd or even ?
i mean that:
while ($row = mysql_fetch_object($result))
    {
     if($row%2 == 1)
     {
      ...
     }
    }

the $row doesn't return a value... like 1, 2 or 6 for example...
thx.
F

Reply via email to