sql >> データベース >  >> RDS >> Mysql

動的連鎖選択ボックス

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

    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);
    

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

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




    1. サブクエリの問題でのOracleSQLの順序付け!

    2. SQLで日付を比較するクエリ

    3. SQLで最低2つの値を取得する

    4. TIME()の例– MySQL