Hola a todos, necesito una manita por favor tengo el siguiente codigo:
<input type="text" id="fecha1" name="fecha1" value=""/>
<input type="text" id="fecha2" name="fecha2" value=""/>
<div class="selector-chofer">
<strong>Chofer:</strong>
<select></select>
<script type="text/javascript">
$(document).ready(function() {
var form_data = {
fp:+$("#fecha1").val(),
ff:+$("#fecha2").val(),
};
$.ajax({
type: "POST",
url: "vchoferes.php",
data: form_data,
success: function(response)
{
$('.selector-chofer select').html(response).fadeIn();
}
});
});
</script>
</div>
y en mi script php de llenado para el combo:
$query= "select id, nombre from choferes where fecha between $_REQUEST['fp'] and $_REQUEST['ff']";
$rs = mysqli_query($cn, $query);
echo '<option value="">Seleccionar</option>';
while ($fila = mysqli_fetch_row($rs)) {
echo '<option value="'.$fila['id'].'">'.$fila['nombre'].'</option>';
}
mysqli_close($cn);
resulta que quiero que el combobox cambie segun las fechas que ingreso en los input sin tener que hacer submit o recargar la pagina, y el problema es que no recibe las variables en la query... algo esta fallando porfa una manita