Re: [PHP] Passing an array as a hidden variable

2007-05-11 Thread Robert Cummings
On Fri, 2007-05-11 at 21:53 -0700, Todd Cary wrote: > When I use the following syntax, the 2 dimensional array loses > it's contents. Can an array be passed this way? > > $attend_ary_save .'>'; ?> No! RTFM! http://www.php.net/manual/en/language.types.type-juggling.php Cheers, Rob. -- .--

Re: [PHP] Passing an array as a hidden variable

2007-05-12 Thread Richard Lynch
On Fri, May 11, 2007 11:53 pm, Todd Cary wrote: > When I use the following syntax, the 2 dimensional array loses > it's contents. Can an array be passed this way? > > $attend_ary_save .'>'; ?> No. You'll just get "Array" back. You can do a few things: $v1){ foreach($v1 as $k2 => $v2

RE: [PHP] Passing an array as a hidden variable

2007-05-13 Thread WeberSites LTD
] Passing an array as a hidden variable On Fri, May 11, 2007 11:53 pm, Todd Cary wrote: > When I use the following syntax, the 2 dimensional array loses it's > contents. Can an array be passed this way? > > $attend_ary_save .'>'; ?> No. You'll just get