Thread: fetch function
View Single Post
Old 09-28-2007, 05:23 AM   #3 (permalink)
Tanax
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

PHP Code:
public function fetch($szSQL){
            
$szResult mysql_query($szSQL);
            
$aResult mysql_fetch_array($szResult);
            return 
$aResult;
        } 
PHP Code:
$db = new database();
$sql sprintf("SELECT * FROM `news` WHERE `title` = %s"mysql_escape_string($input));
$results $db->fetch($sql);

foreach(
$results as $news) {
echo 
$news['title'];

Tanax is offline  
Reply With Quote