sql >> Base de Datos >  >> RDS >> Mysql

Cuadro de selección encadenado dinámico

$.ajax({
  type: 'post',
  url: "ajax.php."
  data: { id:'your id here' } //your id is your select box selected id.
}).done(function() { 

});

en el lado de php:

$id = $_REQUEST['id']; 
$json = array();
$sql = mysql_query("select * from yourdb where id = $id");
while ($row = mysql_fetch_assoc($sql)) {
    $json[] = $row;
}
echo json_encode($json);

referencia ajax:http://api.jquery.com/jQuery.ajax/

referencia json:http://en.wikipedia.org/wiki/JSON