Glazok
Новичок
вот код:
скопировать код в буфер обмена
$zx = mysql_query("SELECT SUM(st) FROM zakaz WHERE id_user='$id_user'");
$zz = mysql_fetch_array($zx);
echo $zz['st'];
вот таблица:
id - Первичный Индекс int (11) AUTO_INCREMENT
id_tovar - int(11)
id_user - int(11)
kolvo - int(11)
foto - text utf8_general_ci
cena - int(11)
status - text
st - int(11)
выводит 0. делаю запрос в phpmyadmin выводит то что надо, но ругается:
Current selection does not contain a unique column. Grid edit, checkbox, Edit, Copy and Delete features are not available. говорят primary key надо поставить, но он же там стоит. в чём проблема?
скопировать код в буфер обмена
$zx = mysql_query("SELECT SUM(st) FROM zakaz WHERE id_user='$id_user'");
$zz = mysql_fetch_array($zx);
echo $zz['st'];
вот таблица:
id - Первичный Индекс int (11) AUTO_INCREMENT
id_tovar - int(11)
id_user - int(11)
kolvo - int(11)
foto - text utf8_general_ci
cena - int(11)
status - text
st - int(11)
выводит 0. делаю запрос в phpmyadmin выводит то что надо, но ругается:
Current selection does not contain a unique column. Grid edit, checkbox, Edit, Copy and Delete features are not available. говорят primary key надо поставить, но он же там стоит. в чём проблема?