12 lines
355 B
Plaintext
12 lines
355 B
Plaintext
<?php
|
|
switch(@$_POST['act']) {
|
|
case 'add_comment'://Получаем количество позиций в корзине
|
|
unset($_POST['act']);
|
|
if (!$_POST['act']) die('низя');
|
|
if (!$_SESSION['user_id']) die('низя');
|
|
$_POST['txt']=base64_encode($_POST['txt']);
|
|
$db->add('m_tovar_comment', $_POST);
|
|
break;
|
|
default:
|
|
}
|
|
?> |