现在我需要将数据添加到数据库中以显示数据库

时间:2015-03-06 22:31:30

标签: php mysql

所以我为一个小项目本身添加了一个小表到一个数据库。现在我需要帮助将数据拉出并正确显示。

Table info
        CREATE TABLE IF NOT EXISTS `tab_dimensions` (
        `id` int(11) NOT NULL,
        `length` int(11) NOT NULL,
        `height` int(11) NOT NULL,
        `width` int(11) NOT NULL,
        `offset` int(11) NOT NULL,
        PRIMARY KEY (`id`)
        ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

我的第一条数据

        INSERT INTO `tab_dimensions` (`id`, `length`, `height`, `width`,      `offset`) VALUES
        (56301, 600, 255, 183, 480);

这就是它的基本布局。我已经开始了

    $sql = 'SELECT id, length, width, height, offset FROM tab_dimensions';

但我接下来会遇到麻烦。对不起,这里有一个新手试图找出并学习。

提前致谢!

更新 - 我这是一个现有的数据库,我正在添加,因此不需要连接它已经有一个作为$ db

我正在尝试使用此数据来填充鼠标悬停图像映射,因此我只需要提取数据然后使用现有表格来显示它。

    <div id="hauler-pole" style="display:none;">
      <table border="0" width="300">
        <tr>
            <td><strong>front</strong></td>
            <td>Length: </td>
            <td>Width: </td>
            <td>Height: </td>
        </tr>
        <tr>
            <td colspan="4">&nbsp;</td>
        </tr>
        <tr>
            <td><strong>Rear</strong></td>
            <td>Length: </td>
            <td>Width: </td>
            <td>Height: </td>
        </tr>
      </table>
    </div>

因此,如果我将鼠标移到id#56301上,那么数据只显示在表格中。

1 个答案:

答案 0 :(得分:0)

http://www.w3schools.com/php/php_mysql_select.asp

<?php

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
} 

$sql = "SELECT id, length, width, height, offset FROM tab_dimensions";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
    // output data of each row
    while($row = $result->fetch_assoc()) {
        echo "id: " . $row["id"];
        echo "length: " . $row["length"];
        echo "width: " . $row["width"];
        echo "height: " . $row["height"];
        echo "offset : " . $row["offset"];
    }
} else {
    echo "0 results";
}
$conn->close();
?>