|
Posted by IRC on 09/11/07 05:30
hey, i am pretty new on javascript as well as PHP,
Hey, anyone can you help me, how to pass the javascript array value to
php page.........
i want to retrieve the values which are arrayed on "selectedValues"
from next page for php variable
this is my javascript code saved on "sendValue.js" file,
<script>
function updateRecordEntry(requestValue){
var slen= requestValue.length;
var selectedValues = new Array();
var selCount="";
for(var i=slen-1; i>=0; i--){
if(requestValue.options[i].selected){
selectedValues[selCount] =
requestValue.options[i].value;
selCount++;
}
}
}
</script>
i need to retrieve the array "selectedValues" values from next php
pages. so, how i can do this..........
i am previously doing through url to pass single javascript value and
do $_REQUEST from next php page. But here i need to send/retrieve the
array not the single value.
so which is the better way for this.............
Thank You
Navigation:
[Reply to this message]
|