asdz: Fatal error: Class 'Dbh' not found in $sth = Dbh::getInstance()->prepare($query);
Вы пропустили скобочку тут - ($_GET['bSortable_' . intval($_GET['iSortCol_' . $i])] (между двух квадр.скобками). Добавил
FanatPHP: каким образом можно отобразить ошибку(конкретно строку, где ошибка). Хочу узнать, где ошибка в 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 '' at line 1
К тому ещё пишет 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 ' Article = , Model = at line 1
Написал так как выше предложили :
if (isset($_POST['edit'])) {
$query = 'UPDATE `Proizv` SET Price ='.$Price.', Article = '.$Article.', Model = '.$Model.', Available = '.$Available.' WHERE ID = '.$_GET['edit_id'];
$results = mysql_query($querys) or die(mysql_error());
и выводит "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 '' at line 1"
Кстати,
if (isset($_POST['edit'])) {
$querys = 'UPDATE `Processors` SET Price ='.$Price.', Article = '.$Article.' WHERE ID = ' . $_GET['edit_id'];
Также также дает ошибку эту
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 ' Article = , Model =