you just name the form elements as array elements, e.g. with explicit keys
        name='array[0]'   name='array[1]'   etc.
or allowing php to assign the keys
        name='array[]'   name='array[]'   etc.      

then the array is an element of $HTTP_POST_VARS[] when the form is posted

Tim Ward
www.chessish.com

> -----Original Message-----
> From: Paul Maine [mailto:[EMAIL PROTECTED]]
> Sent: 04 September 2002 03:25
> To: PHP PHP
> Subject: Pass array in HTTP_POST_VARS question
> 
> 
> Is it possible to pass an array in a form post? If so, how do 
> I reference
> the array on the next page?
> 
> Thank You
> Paul
> php
> 
> 

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

Reply via email to