the problem is domain switching.
cart contents are stored i a session.
Sessions are based on the Browsing Cookie.
Cookies are based on the domain in the address bar.
if you visit:
funlifefoods.com
you start one browsing session
www.funlifefoods.com
is a separate browsing session, it cannot see the cart content form the non www address.
you are going to the non www address to add items:
http://funlifefoods.com/products_detail.php?ProductID=1
then trying to see the items using the www address:
http://www.funlifefoods.com/index_5.php
if you change that to the non www address you will see the items:
http://funlifefoods.com/index_5.php
you can use an htaccess rule to force all traffic to use the www address, see this tutorial:
http://www.webassist.com/community/tutorials/view_tutorial.php?tid=178