On 17 Apr 2005, at 11:58, Gordon Stewart wrote:

>  echo "result - '$result'\n";
>
>  the above is correct, & the query is correct (compared with another
>  query ive got...)
>
>  The result DOES NOT EXIST (I know there are no matches)...
>
>  However :- The '$result'� - Comes up with this :-
>
>  result - 'Resource id #9'

$result is an array.
You'll need to specify which field name or index in the array you want.
..or split them up like this.

foreach($result as $key => $value){
        echo "$key = $value <br />";
}

Riquez

[Non-text portions of this message have been removed]



Community email addresses:
  Post message: [email protected]
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner:   [EMAIL PROTECTED]

Shortcut URL to this page:
  http://groups.yahoo.com/group/php-list 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php-list/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to