Hi
Im trying to create a web based quotation system with php and mysql.
I wanted to create something like shopping basket where people store the items and when they click generate quote the system will display the quote of the items and qty selected. Only when the person has clicked generate quote I wanted to store the quote on the system.
I was thinking to store the items and qty in the session until the person has clicked generate quote.
so finally my question. Is it ok to store the items and qty the user has selected in the session until they want to generate quote.
meaning
$a_temp = array(array('item1'=>'name1', 'qty1'=>1),
array('item2'=>'item2', 'qty'=>2),
array('item3'=>'item3', 'qty'=>3));
$_SESSION['array'] = $a_temp;
when someone adds item to the quote I would just do the following:
$s_array = $_SESSION['array'];
array_push($_SESSION['array'], array("new_item_added"=>"new_item", 'new_qty_added'=>4));
Just wanted to check if I'm doing the right thing.
and how much info can be stored in the session.