Re: POST arrays?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



William Stokes wrote:
Hello,

How to post an array with associated values?

This works ok

<?php
$arr_siirto = array(1,2,3);
print_r($arr_siirto);

$arse = $arr_siirto;
print_r($arse);
?>

But if I post it to another form with this:

<input type="hidden" name="arr_siirt_jouk" value="<?php echo "$arse";?>">

And print there with:

print_r($arr_siirt_jouk);

prints: Array

So how can post the values forward?

Thanks
-Will

Here is the answer that you are looking for.

Just create multiple hidden fields

$arr_siirto = array(1,2,3);
foreach ($arr_siirto AS $key => $value) {
   echo "<input type=\"hidden\" name=\"arr_siirt_jouk[{$key}]\" value=\"{$value}\">\n";
}

Jim

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux