Re: [PHP] Getting arrays out of HTTP_POST_VARS

2001-10-27 Thread Ian Evans
Wow, that holds the land speed record for a reply. Thanks for your help! Mike Eheler wrote: > $HTTP_POST_VARS['middlecasts']['key']['subkey']['wecould']['go_on']['forver']; -- Ian Evans Digital Hit Entertainment - News and Information http://www.digitalhit.com -- PHP General Mailing List

Re: [PHP] Getting arrays out of HTTP_POST_VARS

2001-10-27 Thread Mike Eheler
Onething I should note.. this doesn't work within a string. For example: let's say: $HTTP_POST_VARS['key']['subkey'] = 'Hello World!'; $HTTP_POST_VARS['key2'] = 'World #2!'; if we do: echo "key2: $HTTP_POST_VARS[key2]"; The output will be: key2: World #2! However, if we do: echo "key1/subk

Re: [PHP] Getting arrays out of HTTP_POST_VARS

2001-10-27 Thread Mike Eheler
$HTTP_POST_VARS['middlecasts']['key']['subkey']['wecould']['go_on']['forver']; ;) Mike Ian Evans wrote: >My mind is going blank here and I feel like I'm missing something basic. > >I have an insert form for movie profiles that takes cast members, writers and >directors and inserts them into

[PHP] Getting arrays out of HTTP_POST_VARS

2001-10-27 Thread Ian Evans
My mind is going blank here and I feel like I'm missing something basic. I have an insert form for movie profiles that takes cast members, writers and directors and inserts them into the tables for the correct movieid. In the old version of the script I would repeat the inserting section of th