13 lines
382 B
Plaintext
13 lines
382 B
Plaintext
|
<?php
|
||
|
switch(@$_POST['act']) {
|
||
|
case 'add_comment'://Получаем количество позиций в корзине
|
||
|
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:
|
||
|
}
|
||
|
?>
|