try using mysql_num_rows() to get the number of rows returned by the query.
you need to supply it with the identifier for the query not the sql you sent
to the query. not exactly sure what you're trying to do though ...

Steve

<[EMAIL PROTECTED]> wrote in message
BB6D932A42D6D211B4AC0090274EBB1D2EF0F0@GLOBAL1">news:BB6D932A42D6D211B4AC0090274EBB1D2EF0F0@GLOBAL1...
> Thanks Steve! :)  Here's the code:
>
> <?
>
> $results = mysql_db_query("$db", "select *  from $table where $query order
> by update_datetime desc limit $offset, 10");
>
> while($one = mysql_fetch_array($results)){
> $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
> ";
> };

>>>>>>>>>>>>>>>$numrows=mysql_num_rows($one);

> if($numrows= =0)
> {
> 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