Hola,
En mi aplicacion puedo seleccionar el nombre de profesores con
Código HTML:
<select id="idprofesor"> <img src="../images/refresh.jpg" onclick="loadXMLDoc()" required />
que se conecta a una BD, esta manda a llamar un codigo en Ajax
Código Javascript
:
Ver originalfunction loadXMLDoc()
{
var xmlhttp;
var fecha=document.getElementById('school').value;
var profesor=document.getElementById('idprofesor').value;
if(fecha=='')
{
document.getElementById("myDiv").innerHTML="";
return;
}
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("myDiv").innerHTML=xmlhttp.responseText;
}
else
{
document.getElementById("myDiv").innerHTML='<img src="../images/load.gif" width="50" height="50" />'; }
}
xmlhttp.open("POST","ejecutando.php",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("fecha_ajax="+fecha+"&profesor_ajax="+profesor);
}
y que posteriormente en una consulta
Código SQL:
Ver original$fecha_ajax=$_POST['fecha_ajax'];
$profesor_ajax=$_POST['profesor_ajax'];
$query_hora1="select profesor where profesor = '".$profesor_ajax."'";
Hago mi busqueda por estos filtros pero no me funciona con la variable de $profesor_ajax, no muestra ningun error y la consulta si funciona en mysql bien.
Alguien podria hecharme una manita, gracias.