- Регистрация
- 20 Апр 2009
- Сообщения
- 127
- Реакции
- 48
- Заблокирован
- #1.361
Тематический каталог сайтов
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
// If the user is logged in, we can try to retrieve the current cart from the database
// We store the items in a new SESSION var
if( $GLOBALS['auth']['user_id'] > 0 && empty($_SESSION['savedcart'])) {
$q = 'SELECT `cart_content` FROM `#__{vm}_cart` WHERE `user_id`='.$GLOBALS['auth']['user_id'];
$db->query( $q );
if( $db->next_record() ) {