Hi!
I use php and IIS on win2000, and I have a php page where one checks cehckboxes, and this array is submitted to the same php page:
<form.... >
<input type="checkbox" name="booking_list[]" value="$id">
<input type="submit" name="Submit" value="Submit">
</form>
The problem is that I can't access this array: booking_list[],
unless I write: $POST['booking_list'], but all examples I've found writes that one can use booking_list[] without $POST.
I also wonder:
How does one access element nr. 1 in this array: $_POST['booking_list'] )
This didn't work: $POST['booking_list[1]']
nor did this: $POST['booking_list(1)']
I'd appretiate any help!
Thanks in advance!
Best regards,
Tom-Erik