if you have an array in javascript:

array1 = [1,2,3,4,5,6,7,8,'test'];
etc...

you can join it in JavaScript to make it a one string as:
array1 = array1.join('|');

then split in PHP to make it back an array:
<?
$array1 = explode('|', $array1);
?>

good luck,


"Kale" <[EMAIL PROTECTED]> wrote in message
002c01c254cc$fe8eace0$7800a8c0@leonard">news:002c01c254cc$fe8eace0$7800a8c0@leonard...
> Hy,
> I have an array make with a javascript.
> How can I read values with PHP from it?
> Kale.
>



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

Reply via email to