09-18-2007, 08:11 PM
|
#19 (permalink)
|
|
The Frequenter
Join Date: Sep 2007
Posts: 360
Thanks: 24
|
Quote:
Originally Posted by Tanax
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;
}
|
|
|
|