Hi All,
Question: when accessing a session variable array, how can I write it?
is the correcnt syntax
or
TIA Bastien
There are many ways to skin this cat,
but it still tastes like chicken
Question: when accessing a session variable array, how can I write it?
is the correcnt syntax
Code:
for($x=0;$x<$_SESSION['numbooths'];$x++;){
print "Booth #:".$_SESSION['booths'][$x];
}
or
Code:
for($x=0;$x<$_SESSION['numbooths'];$x++;){
print "Booth #:".$booths[$x];
}
TIA Bastien
There are many ways to skin this cat,
but it still tastes like chicken