I have created an array named "arrayModel" in Javascript and I am trying to access those values in PHP. So as to store those values to PHP variables.
var arrayModel = new Array(5);
arrayModel[0] = "one";
arrayModel[1] = "two";
arrayModel[2] = "three";
arrayModel[3] = "four";
arrayModel[4] = "five";
Any idea how I can access the values of the array in PHP?
Thanks in advance.