big-moving.ru/api/php/get_from_cart.php

8 lines
216 B
PHP
Raw Normal View History

2022-06-24 15:29:23 +05:00
<?php
//вынимаем количество товара из корзины
function get_from_cart($user_session_id){
unset($a);
$a['session_id']=$user_session_id;
return $db->get_sql('cart', $a);
}
?>