> I tried the following code but all I get back is "Array". I'm trying to
> pass a huge single array.
[..]
Are you using register_globals set to Off (0)? If so, is that all your code?
>
The code here, linked with what you put would result in the $eList
variable being the following:
$eLis
Sorry, haven't been following this thread, but just wanted to point out
that a difficulty you might be having may be due to:
>
javascript usually doesn't like those kind of characters in variable
names (try taking the brackets out)
-paul
--
I tried the following code but all I get back is "Array". I'm trying to pass
a huge single array.
";
print_r( $eList );
$submit = "";
}
else
{
$mList = array();
$mList[0] = "1. hello";
$mList[1] = "2. there";
$mList[2] = "3. How are you";