Yan Grossman wrote:

Hi,
I fixed my code to handle forms using $_REQUEST. Just having problem with
the fields with multiple contents...
the one you have to call  like field[0], field[1],etc...

How do I use the brackets inside brackets?
my case is this:
Thanks.
I have fixed everything with $_REQUEST
but I am having problem with the multiple fields, like this:
$message .= ("hotel = " . $_REQUEST['pac_hot[0]'] . " - ".
$_REQUEST['pac_hot[1]']. " - " .$_REQUEST['pac_hot[2]'] . " -
".$_REQUEST['pac_hot[3]'] . "\n");

How am I going to use the brackets inside the brackets?
Thanks


first, change this: $_REQUEST['pac_hot[0]'] to: $_REQUEST["$pac_hot[0]"]
a single quote ( ' ) disallows variable-matching, meaning it won't replace $var by what it should be, it just leaves it as it where a real character it should show.

that should work on all your request array stuff.... hope this helps :)


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to