在html页面上显示来自mysql / phpmyadmin的数据

时间:2014-11-19 10:07:43

标签: php html

我是PHP的初学者。 我试图将PHP放在HTML文件中,以便从我的数据库调用名为test的数据和名为myemployee的表。
我尝试了其他论坛的所有推荐,但我仍然没有在表格中显示,而是显示了代码 按照我的代码。我的代码中有什么问题吗?

即使我放入PHP文件,然后从像<?php include ('test.php')?>这样的HTML文件调用它仍然无法正常工作。

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Home</title>
<link href="style/index-layout.css" rel="stylesheet" type="text/css" />
<link href="style/homepage-layout.css" rel="stylesheet" type="text/css"/>
</head>

<body>

<!--right-->
<div id="body">
<div id="left">

<br /><br />
<P ><B><h3>Progress</h3></FONT></B></P>

</div></div>
<?php
      $username = "root";
      $password = "";
      $host = "localhost";

      $connector = mysql_connect($host,$username,$password)
          or die("Unable to connect");
        echo "Connections are made successfully::";
      $selected = mysql_select_db("test", $connector)
        or die("Unable to connect");

      //execute the SQL query and return records
      $result = mysql_query("SELECT * FROM myemployee");
      ?>
<table>
      <thead>
        <tr>
          <th>Employee_id</th>
          <th>Employee_Name</th>
          <th>Employee_dob</th>
          <th>Employee_Adress</th>
          <th>Employee_dept</th>
          <th>Employee_salary</th>
        </tr>
      </thead>
      <tbody>
        <?php
          while( $row = mysql_fetch_assoc( $result ) ){
            echo "$row";
            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>";
          }
        ?>
      </tbody>
    </table>
     <?php mysql_close($connector); ?>
<br/><br/>

</body>
</html>

3 个答案:

答案 0 :(得分:1)

检查文件扩展名。 PHP(默认情况下)只能在.php作为扩展名的文件中运行。

答案 1 :(得分:1)

无需将其调用为html文件。您可以将整个代码放在.php文件中并运行php文件。 我只是checke3d你的代码,我把它放在一个PHP文件,并做了一些更改。它工作得很好(显然没有风格)。 这是代码:

<?php
 $username = "root";
 $password = "";
 $host = "localhost";
 $connector = mysql_connect($host, $username, $password)
    or die("Unable to connect");
 $selected = mysql_select_db("sample", $connector)
    or die("Unable to connect");
 ?>
 <!DOCTYPE html>
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
    <title>Home</title>
    <link href="style/index-layout.css" rel="stylesheet" type="text/css" />
    <link href="style/homepage-layout.css" rel="stylesheet" type="text/css"/>
 </head>
 <body>
    <!--right-->
    <div id="body">
        <div id="left">
        </div></div>
    <?php
    //execute the SQL query and return records
    $result = mysql_query("SELECT * FROM alte_brand");
    ?>
    <table>
        <thead>
            <tr>
                <th>Employee_id</th>
                <th>Employee_Name</th>

            </tr>
        </thead>
        <tbody>
            <?php
            while ($row = mysql_fetch_assoc($result)) {
                echo
                "<tr>
          <td>{$row['bid']}</td>
          <td>{$row['bname']}</td>
        </tr>";
            }
            ?>
        </tbody>
    </table>
 </body>
 </html>
<?php mysql_close($connector); ?>

答案 2 :(得分:0)

您可以将此指令添加到.htaccess文件中。

AddType application/x-httpd-php .html