From the below example,if value is in numbers its working correctly.But if its in string the value displays as 0 W3 Schools Example
HTML:
<select name="users" onchange="showUser(this.value)">
<option value="">Select a person:</option>
<option value="abc-01">Peter Griffin</option>
<option value="aaac-02">Lois Griffin</option>
</select>
SCRIPT:
function showUser(str) {
if (str == "") {
document.getElementById("txtHint").innerHTML = "";
return;
} else {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else {
// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax2.php?q="+str,true);
xmlhttp.send();
}
}
PHP:
$q = intval($_GET['q']);
echo $q ;
I get 0 as value.Need help