Hey is it possible to make a session variable an array? Here is the code I was trying but doesn't work. Is it possible? Thank
Adam
<?
session_start();
$counter = 0;
while ($counter < 100) {
session_register("product[$counter]");
global $product[$counter];
$product[$counter] = $counter;
echo $product[$counter];
$counter = $counter + 1;
}
?>