View Single Post
Old 09-18-2007, 08:11 PM   #19 (permalink)
Haris
The Frequenter
Prolific Welcomer Upcoming Programmer 
 
Join Date: Sep 2007
Posts: 360
Thanks: 24
Haris is on a distinguished road
Default

Quote:
Originally Posted by Tanax View Post
Haha true :P

but anyways, got any ideas for the fetch function?
PHP Code:
        /*
         * Summary:     Fetches the result from the datbase in an array
         * Parameters:  SQL Statement
         * Return:      Returns an array of strings that corresponds to the fetched rows
         */
        
        
public function fetch($query){
            
$aResult mysql_fetch_array($query);
            return 
$aResult;
        } 
Haris is offline  
Reply With Quote