At 13:37 9-3-2003, you wrote:
if ($myrow = mysql_fetch_array($result)) {
  do {
    echo(" $myrow[title] ");
  } while ($myrow = mysql_fetch_array($result));
}

PS same result with


while ($myrow = mysql_fetch_array($result));
{   echo $myrow['title'];
}


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to