xmlhttp.open("GET","BAConsultRecordsAJAX.php?q="+str,true);
Is it possible to do this?
xmlhttp.open("GET","BAConsultRecordsAJAX.php?q="+str+"j="+str2,true);
I want a value to be stored in both q and j.
of course it is
just add an & before each additional parameter like this:
xmlhttp.open("GET","BAConsultRecordsAJAX.php?q="+str+"&j="+str2,true);
&:xmlhttp.open("GET","BAConsultRecordsAJAX.php?q="+str+"&j="+str2,true);