php-db | 2005011
Date: 01/05/05
- Next message: Jochem Maas: "Re: [PHP-DB] $_GET of array variables"
- Previous message: Yvonne Federowicz: "[PHP-DB] $_GET of array variables"
- In reply to: Yvonne Federowicz: "[PHP-DB] $_GET of array variables"
- Next in thread: Jochem Maas: "Re: [PHP-DB] $_GET of array variables"
- Reply: Jochem Maas: "Re: [PHP-DB] $_GET of array variables"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> $_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: Jochem Maas: "Re: [PHP-DB] $_GET of array variables"
- Previous message: Yvonne Federowicz: "[PHP-DB] $_GET of array variables"
- In reply to: Yvonne Federowicz: "[PHP-DB] $_GET of array variables"
- Next in thread: Jochem Maas: "Re: [PHP-DB] $_GET of array variables"
- Reply: Jochem Maas: "Re: [PHP-DB] $_GET of array variables"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

