*/ use wishthis\{Page, User}; use Embed\Embed; $page = new page(__FILE__, 'View wishlist'); $page->header(); $page->navigation(); $products = array(); /** * Get wishlist products */ if (isset($_GET['wishlist'])) { $user = new User(); $wishlist = $_GET['wishlist']; $products = $user->getProducts($wishlist); } /** * Delete wishlist */ if (isset($_POST['wishlist_delete_id'])) { $database->query('DELETE FROM `wishlists` WHERE id = ' . $_POST['wishlist_delete_id'] . ' ;'); } ?>

title ?>

Wishlists

Please select a wishlist to view.

Options

Wishlist related options.

get($product['url']); ?>
image) { ?>
title) { ?>
url) { ?> title ?> title ?>
keywords) { ?>
keywords ?>
description) { ?>
description ?>
publishedTime) { ?> publishedTime ?> favicon) { ?> providerName) { ?> <?= $info->providerName ?>
Empty

The selected wishlist seems to be empty.

Add a product
No wishlist selected

Select a wishlist to see it's products.

footer();