将数据从SQL数据库显示到php / html表中

时间:2013-03-06 15:16:43

标签: php html mysql phpmyadmin xampp

好的我在phpmyadmin(sql)上有一个数据库,我想将我的一个表显示在HTML / PHP的表中。我在线搜索过,无法实现此功能,所以我想知道是否有人可以帮我编写代码?

database = 'hrmwaitrose'
username = 'root'
host = 'localhost'

没有PW

我想显示表名employee

中的数据

4 个答案:

答案 0 :(得分:41)

你说你有一个关于PhpMyAdmin的数据库,所以你使用的是MySQL。 PHP提供连接MySQL数据库的功能。

$connection = mysql_connect('localhost', 'root', ''); //The Blank string is the password
mysql_select_db('hrmwaitrose');

$query = "SELECT * FROM employee"; //You don't need a ; like you do in SQL
$result = mysql_query($query);

echo "<table>"; // start a table tag in the HTML

while($row = mysql_fetch_array($result)){   //Creates a loop to loop through results
echo "<tr><td>" . $row['name'] . "</td><td>" . $row['age'] . "</td></tr>";  //$row['index'] the index here is a field name
}

echo "</table>"; //Close the table in HTML

mysql_close(); //Make sure to close out the database connection

在while循环中(每次遇到结果行时都会运行),我们回显创建一个新的表行。我还添加了一个包含字段。

这是一个非常基本的模板。您可以使用mysqli_connect而不是mysql_connect查看其他答案。 mysqli代表mysql的改进。它提供了更好的功能。你注意到它也有点复杂。这取决于你需要什么。

答案 1 :(得分:4)

这是我编写的一个简单函数,用于显示表格数据而无需输入每个列名: (另外,请注意:嵌套循环)

function display_data($data) {
    $output = '<table>';
    foreach($data as $key => $var) {
        $output .= '<tr>';
        foreach($var as $k => $v) {
            if ($key === 0) {
                $output .= '<td><strong>' . $k . '</strong></td>';
            } else {
                $output .= '<td>' . $v . '</td>';
            }
        }
        $output .= '</tr>';
    }
    $output .= '</table>';
    echo $output;
}

以下更新的功能

嗨杰克,

你的函数设计很好,但是这个函数总是错过数组中的第一个数据集。我测试了那个。

你的功能非常好,很多人都会使用它,但它们总会错过第一个数据集。这就是我写这个修正案的原因。

缺少的数据集来自条件,如果键=== 0.如果key = 0,则只写入列标题,但不包含$ key 0的数据。所以总是缺少数组的第一个数据集。

你可以通过将if条件移动到第二个foreach循环之上来避免这种情况,如下所示:

function display_data($data) {
    $output = "<table>";
    foreach($data as $key => $var) {
        //$output .= '<tr>';
        if($key===0) {
            $output .= '<tr>';
            foreach($var as $col => $val) {
                $output .= "<td>" . $col . '</td>';
            }
            $output .= '</tr>';
            foreach($var as $col => $val) {
                $output .= '<td>' . $val . '</td>';
            }
            $output .= '</tr>';
        }
        else {
            $output .= '<tr>';
            foreach($var as $col => $val) {
                $output .= '<td>' . $val . '</td>';
            }
            $output .= '</tr>';
        }
    }
    $output .= '</table>';
    echo $output;
}

致以最诚挚的问候和感谢 - Axel Arnold Bangert - Herzogenrath 2016

答案 2 :(得分:3)

查看手册http://www.php.net/manual/en/mysqli.query.php

<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");

/* check connection */
if ($mysqli->connect_errno) {
    printf("Connect failed: %s\n", $mysqli->connect_error);
    exit();
}

/* Create table doesn't return a resultset */
if ($mysqli->query("CREATE TEMPORARY TABLE myCity LIKE City") === TRUE) {
    printf("Table myCity successfully created.\n");
}

/* Select queries return a resultset */
if ($result = $mysqli->query("SELECT Name FROM City LIMIT 10")) {
    printf("Select returned %d rows.\n", $result->num_rows);

    /* free result set */
    $result->close();
}

/* If we have to retrieve large amount of data we use MYSQLI_USE_RESULT */
if ($result = $mysqli->query("SELECT * FROM City", MYSQLI_USE_RESULT)) {

    /* Note, that we can't execute any functions which interact with the
       server until result set was closed. All calls will return an
       'out of sync' error */
    if (!$mysqli->query("SET @a:='this will not work'")) {
        printf("Error: %s\n", $mysqli->error);
    }
    $result->close();
}

$mysqli->close();
?>

答案 3 :(得分:2)

参考http://www.w3schools.com/php/php_mysql_select.asp。 如果你是初学者并想学习,那么w3schools就是一个好地方。

<?php
    $con=mysqli_connect("localhost","root","YOUR_PHPMYADMIN_PASSWORD","hrmwaitrose");
    // Check connection
    if (mysqli_connect_errno())
      {
      echo "Failed to connect to MySQL: " . mysqli_connect_error();
      }

    $result = mysqli_query($con,"SELECT * FROM employee");

    while($row = mysqli_fetch_array($result))
      {
      echo $row['FirstName'] . " " . $row['LastName']; //these are the fields that you have stored in your database table employee
      echo "<br />";
      }

    mysqli_close($con);
    ?>

您可以在表格内echo使用

<?php
 echo "<table>";
 while($row = mysqli_fetch_array($result))
          {
          echo "<tr><td>" . $row['FirstName'] . "</td><td> " . $row['LastName'] . "</td></tr>"; //these are the fields that you have stored in your database table employee
          }
 echo "</table>";
 mysqli_close($con);
?>