I want to get a whole bunch of items from the database and add the price together, the records are pulled from the database with something like:
$query = "SELECT order_id, username, status, title, id, price FROM cart WHERE username='$_SESSION[user]' ORDER BY id ASC";
so I want to add the price's togeher at the end of the page, I can't get it through my head though?
Thanks in advance.