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