Search found 1 match

by samp
Mon Jan 12, 2004 1:37 pm
Forum: PHP - Code
Topic: Session associative array help
Replies: 1
Views: 220

Session associative array help

I'm writing a shopping cart from scratch. To save my variables from script to script, I've decided to define a session array. Here is the defintion: $_SESSION["product"] = array( "model" => $model, "qty" => $qty, "price" => $price, "color" => $color1...