Posted by Rainman on 11/23/05 01:09
I'm sure there is an FAQ on this somewhere, but I couldn't find one.
I'm sure a responder will clue me in.
my URL is: mypage.php?var=2&var=4&var=5
print_r($_GET);
gives me: 5
instead of
Array (
[var] => 2
[var] => 4
[var] => 5
)
I tried:
print_r($get[var]);
but this gave me just 5 also. How do I access multiple values (from a
multi-select list)??
Mark
Navigation:
[Reply to this message]
|