I've been staring at this same problem for over a week now. I've worked around it as best as i can but i think it's time to ask someone else for input.
I'm trying to pass a value thru an ajax parameter.. that's all. it SHOULD be easy in theory.
what i want to do is create a jscript variable then pass that variable as the value for a parameter.
php then converts that value to something it can use to finish the rest of my code.
As i said it's hindering my webpage progress and i would like to get it fixxed soon so any help would be appreciated.
I'm trying to pass a value thru an ajax parameter.. that's all. it SHOULD be easy in theory.
what i want to do is create a jscript variable then pass that variable as the value for a parameter.
php then converts that value to something it can use to finish the rest of my code.
As i said it's hindering my webpage progress and i would like to get it fixxed soon so any help would be appreciated.
Code:
function getSelection()
{
var selection=document.getElementsById("SelectedItem");
var xmlhttp;//create a var for the obj
if (window.XMLHttpRequest)//if requesting an obj...
{
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else
{
alert("Your browser does not support XMLHTTP!");
}
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
{
var text = xmlhttp.responseText;
addNode(text);
}
}
xmlhttp.open("GET","battle_nin.php?selection",true);
xmlhttp.send(null);
}
//the php snippet
$currentjutsu=$_GET[selection];