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

データベースからhtmlテーブルにデータを表示する

    これが、phpとデータベース接続を使用したソリューションの合計htmlです

       <!doctype html>
        <html lang="en">
        <head>
          <meta charset="UTF-8">
          <title>database connections</title>
        </head>
        <body>
          <?php
          $username = "database-username";
          $password = "database-password";
          $host = "localhost";
    
          $connector = mysql_connect($host,$username,$password)
              or die("Unable to connect");
            echo "Connections are made successfully::";
          $selected = mysql_select_db("test_db", $connector)
            or die("Unable to connect");
    
          //execute the SQL query and return records
          $result = mysql_query("SELECT * FROM table_one ");
          ?>
          <table border="2" style= "background-color: #84ed86; color: #761a9b; margin: 0 auto;" >
          <thead>
            <tr>
              <th>Employee_id</th>
              <th>Employee_Name</th>
              <th>Employee_dob</th>
              <th>Employee_Adress</th>
              <th>Employee_dept</th>
              <td>Employee_salary</td>
            </tr>
          </thead>
          <tbody>
            <?php
              while( $row = mysql_fetch_assoc( $result ) ){
                echo
                "<tr>
                  <td>{$row\['employee_id'\]}</td>
                  <td>{$row\['employee_name'\]}</td>
                  <td>{$row\['employee_dob'\]}</td>
                  <td>{$row\['employee_addr'\]}</td>
                  <td>{$row\['employee_dept'\]}</td>
                  <td>{$row\['employee_sal'\]}</td> 
                </tr>\n";
              }
            ?>
          </tbody>
        </table>
         <?php mysql_close($connector); ?>
        </body>
        </html>
    

    ソース: dbからデータを取得し、phpのテーブルに表示します..このコードの何が問題になっているのかを確認してください。



    1. php / mysqlの世界では、ストアドプロシージャは使用できませんか?

    2. MySQLで列の値を一意に保つにはどうすればよいですか?

    3. テーブルのサイズが予想より4倍以上大きいのはなぜですか? (行*バイト/行)

    4. ゆっくりと変化する寸法(SCD)の概要