Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/07/2007, 12:24
Avatar de MaBoRaK
MaBoRaK
 
Fecha de Ingreso: abril-2003
Ubicación: La Paz - Bolivia
Mensajes: 2.003
Antigüedad: 21 años, 6 meses
Puntos: 35
Mensaje Re: Recibir valor de un select y contar registros segun select seleccionado

loading...............


así
Código PHP:
<select id="test" name="test" onChange="cuenta_pregunta(this.value);"
Código PHP:
function cuenta_pregunta(uidTest)
{
var 
bla = new TuobjetoXMLhttprequest();
bla.open("get","envio_suma_pregunta.php?test="+uidTest+"&rand="+Math.random(),true);
bla.onreadystatechange=lanzaConteo;
bla.send(null);
}
function 
lanzaConteo()
{
 if(
bla.status==4)
 {
   
alert(bla.responseText);
 }

envio_suma_pregunta.php
Código PHP:
<?php
//tu conexion a BD
$query="SELECT * FROM preguntas WHERE id_test=".$_GET['test'];
$algo mysql_query($query);
echo 
mysql_num_rows($algo);
?>
Creo que es así.... espero te sirva, lo hice al vuelo.



connection closed.
__________________

Maborak Technologies