Hi all...
I have a javascript array say jsArr[]. I want this array to be passed to a php page through the get method. Something like "nextPage.php?arr=jsArr[]".
There i should be able to access the array like "$arr[] = $_GET[arr]" and perform operations like foreach($arr as $key => $val).
Is it possible...?
Thanks a lot in advance...