Mysql
 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>

स्रोत:डीबी से डेटा पुनर्प्राप्त करें और इसे php में तालिका में प्रदर्शित करें .. इस कोड को देखें इसमें क्या गलत है?



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL में क्रॉसस्टैब देखें?

  2. MySQL को Go से कनेक्ट करने का अनुशंसित तरीका क्या है?

  3. PHP के साथ तालिका बनाएं और MySQL से पॉप्युलेट करें

  4. अपना खुद का TinyURL बनाना

  5. क्या SQL डेटाबेस में चित्र, ध्वनियाँ, वीडियो संग्रहीत करना संभव है?