First   argument   should   be   an   array   
函数第一个参数必须是一个数组.
$row   =   mysql_fetch_array($res); 
if (is_array($row)){  // or if($row){
    extract($row); 
}else{
    die("SQL execute error!");
}
?>