php-db | 2005011
Date: 01/05/05
- Next message: Jason Wong: "Re: [PHP-DB] $_GET of array variables"
- Previous message: John Holmes: "Re: [PHP-DB] MySQL Auto PK"
- In reply to: Jochem Maas: "Re: [PHP-DB] $_GET of array variables"
- Next in thread: Jason Wong: "Re: [PHP-DB] $_GET of array variables"
- Reply: Jason Wong: "Re: [PHP-DB] $_GET of array variables"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Jochem Maas wrote:
> in the script that recieve the form submission try adding the following
> lines to view the contents of the $_GET superglobal array.
>
> echo '<pre>';
> print_r( $_GET );
tip for those pulling their hair out: PRINT_R() is your friend!!!
...sometimes referred to as the poormans debugger.
now lets sing together: "If in doubt print it out!" :-)
> echo '</pre>';
>
> once you see the structure it should be clear what array index key(s)
> you should be using to get to the relevant values.
>
> PS - Matt M.'s syntax suggestion is along the right lines (although the
> actual keys you use may be different.
>
> Matt M. wrote:
>
>>> $_GET['simplevariable'] but am not having much luck with anything like:
>>>
>>> $_GET["arrayvariable$a"] (1-dimensional array) or
>>> $_GET["arrayvariable$a$b"] (2-dimensional array)
>>>
>>> (I've tried several other odd syntaxes such as
>>> $_GET["arrayvariable[$a][$b]"]. Also it's not an \" situation.)
>>
>>
>>
>> have you tried
>> $_GET["arrayvariable"][$a]
>> or $_GET["arrayvariable"][$a][$b]
>>
>
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Jason Wong: "Re: [PHP-DB] $_GET of array variables"
- Previous message: John Holmes: "Re: [PHP-DB] MySQL Auto PK"
- In reply to: Jochem Maas: "Re: [PHP-DB] $_GET of array variables"
- Next in thread: Jason Wong: "Re: [PHP-DB] $_GET of array variables"
- Reply: Jason Wong: "Re: [PHP-DB] $_GET of array variables"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

