On 28.02.2001 22:40:39 UzeV wrote:

> Hi,
>
> The webhosting company where I host my my site had upgraded their mysql to
> 3.23.32
> and now my program has an error, saying :
>
> Supplied argument is not a valid MySQL result resource in ........
>
> the error is in the line containing :
> while ($row = mysql_fetch_row($result1)) {


There must be a different error.  My company also uses .32 (or is it .33?) and
something like the above works fine all the time for me.
Are you sure that the query was successfull?  In case you're using PHP, that's
how I always do queries - especially when I run into problems:

$result = mysql_query( $query ) or die( '#:' . mysql_errno() . ' ' .
mysql_error() );



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to