I want to pass more then one value in GET
request with JS.
However, the way I am currently trying it does not work.
The function I am using for that is given below:
<script type="text/javascript">
function updatestatus(status, id){
var xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET","adminfunction.php?status="+status"id="+id,false);
xmlhttp.send(null);
}
</script>
thanks for the help.