okay - read all the code now.

this might be a better way:

<?php

$results = mysql_db_query("$db", "select *  from $table where $query order
by update_datetime desc limit $offset, 10");

$one = mysql_fetch_array($results);

$numrows=mysql_num_rows($one);    // get the number of results
if ($numrows>0)
{
    for ($x=0;$x<$numrows;$x++)
    {
    $id=$one["id"];
    $title=$one["title"];
    $description=$one["description"];

print "
<TR><TD VALIGN=TOP><img src=/assets/images/bullet.gif width=10
height=8></TD><TD><FONT FACE=VERDANA,ARIAL,HELVETICA,SANS-SERIF SIZE=2><A
HREF=/view_top.php3?id=$id>$title</A><BR>$description</TD></TR>\n
<TR><TD VALIGN=TOP COLSPAN=2><img src=/assets/images/spacer.gif
width=10 height=6></TD></TR>\n
";
    } // end of for
}
else
{
print "
<TR><TD><FONT FACE=VERDANA,ARIAL,HELVETICA,SANS-SERIF SIZE=2>NO
RESULTS</TD></TR>\n
<TR><TD VALIGN=TOP COLSPAN=2><img src=/assets/images/spacer.gif
width=10 height=6></TD></TR>\n
";
}
?>




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to