nihilism machine wrote:

> $ret = mysql_result($r, 0);
> mysql_free_result($r);
> if ($this->auto_slashes) return stripslashes($ret);
> else return $ret;
> }
> 
> 
> what is $ret, an array? 

No, it's a mysql result object.

> if so how can i access the individual rows in it?

Look up mysql_fetch_assoc(). 


/Per Jessen, Zürich

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

Reply via email to