Get Wishlist by CustomerId with product detail .Let see example
<?php
require_once 'app/Mage.php';
Mage::app('default');
Mage::getSingleton("core/session",...
For adding product to wishlist, we need customer id & product id . Let see example.
<?php
require_once 'app/Mage.php';
Mage::app('default');
Mage::getSingleton("core/session",...
Magento search section is a bit more complex as they built a mechanism to save queries and results for caching and statistics. So, you need to prepare...