$globalArray = $_POST['yourPostArray'];

$arrayCount = count($globalArray);

// this loops and prints all array values for the amount
// of values found with the count function above
for ($count = 0; $count < $arrayCount; $count++) {
    print $globalArray[$count];
}

goodluck :)

"Pei_world" <[EMAIL PROTECTED]> schreef in bericht
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> if my post variable is
> $_POST[array]
> How can I get the individual element of that array?
> I found one way to do this is $two_array=$_POST[array],
> but is there any other way to do so?
>
> thx
>
> --
> Sincerely your;
>
> pei_world ( .::IT::. )
>
>



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

Reply via email to