Hi . I surprised what why my lastIdRows method doesnt work .Please take alook at it's definition and tell me do you see any syntax error
public function process($query){
$result=mysql_query($query,$this->connection);
if(!$result){
die("Database query failed".mysql_error());
}
return $result;
}// End "process()" method
public function lastIdRows($column_set,$table_name,$last_id){
$query="SELECT '{$column_set[0]}','{$column_set[1]}','{$column_set[2]}','{$column_set[3]}' FROM '{$table_name}' WHERE id>'{$last_id}'";
$result=$this->process($query);
return $result;
}// End "last_id_rows()" method