Re: Ошибка #1064 - You have an error in your SQL syntax; check the manual
Добрый день. Не могу разобраться.
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'BY id DESC LIMIT1,3' at line 2
function getContent(){
$controller = new Controller();
$url = $controller->getUrl();
$sql = "SELECT id,author,title,description,
price,image,id_cat FROM products WHERE id_cat= ". $url[1].
"ORDER BY id DESC LIMIT". $url[2].",".Config::PerPage;
$query = mysql_query($sql) or die(mysql_error());
return $this->db_result_to_array($query);