Hi All,
Question: when accessing a session variable array, how can I write it?
is the correcnt syntax
for($x=0;$x<$_SESSION['numbooths'];$x++;){
print "Booth #:".$_SESSION['booths'][$x];
}
or
for($x=0;$x<$_SESSION['numbooths'];$x++;){
print "Booth #:".$booths[$x];
}
TIA