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

JqueryAjaxを使用してMysqlからデータを取得する

    Ajax + jQueryを使用してデータを取得するには、次のコードを記述する必要があります。

     <html>
     <script type="text/javascript" src="jquery-1.3.2.js"> </script>
    
     <script type="text/javascript">
    
     $(document).ready(function() {
    
        $("#display").click(function() {                
    
          $.ajax({    //create an ajax request to display.php
            type: "GET",
            url: "display.php",             
            dataType: "html",   //expect html to be returned                
            success: function(response){                    
                $("#responsecontainer").html(response); 
                //alert(response);
            }
    
        });
    });
    });
    
    </script>
    
    <body>
    <h3 align="center">Manage Student Details</h3>
    <table border="1" align="center">
       <tr>
           <td> <input type="button" id="display" value="Display All Data" /> </td>
       </tr>
    </table>
    <div id="responsecontainer" align="center">
    
    </div>
    </body>
    </html>
    

    mysqli接続の場合、次のように記述します。

    <?php 
    $con=mysqli_connect("localhost","root",""); 
    

    データベースのデータを表示するには、次のように記述します:

    <?php
    include("connection.php");
    mysqli_select_db("samples",$con);
    $result=mysqli_query("select * from student",$con);
    
    echo "<table border='1' >
    <tr>
    <td align=center> <b>Roll No</b></td>
    <td align=center><b>Name</b></td>
    <td align=center><b>Address</b></td>
    <td align=center><b>Stream</b></td></td>
    <td align=center><b>Status</b></td>";
    
    while($data = mysqli_fetch_row($result))
    {   
        echo "<tr>";
        echo "<td align=center>$data[0]</td>";
        echo "<td align=center>$data[1]</td>";
        echo "<td align=center>$data[2]</td>";
        echo "<td align=center>$data[3]</td>";
        echo "<td align=center>$data[4]</td>";
        echo "</tr>";
    }
    echo "</table>";
    ?>
    


    1. SQL Serverがミリ秒を失うのはなぜですか?

    2. SQLデータベースが破損しているかどうかを確認する方法–MDFファイルを修復するソリューション

    3. PostgreSQLのSlonyレプリケーションに関するエキスパートガイド

    4. 変異テーブルの回避策としてのOracle