A shopping basket is going to be shown on every page of my site. I guess a
some database queries to get the product name, price, quantity on every page
is needless. Any ideas on the best way?
Is it a good idea to put a huge block of html in a session var (the html to
display the basket), and use that. Then once a product is added/removed from
the basket, requery the database and recreate the html...?