【发布时间】:2016-03-22 02:14:21
【问题描述】:
基本上我必须通过 mysql 和 php 使用 xampp 创建一个点唱机类型图表。 我已经完成了设置表的基础知识,我引用了 mysql 数据库等。我只是不知道如何编写我创建的图像文件夹的路径。我的 Image 文件夹位于我创建的名为 Jukebox 的文件夹下的 htdocs 中。这是我的编码:
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "jukebox";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT * FROM Music";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
echo "<table>
<tr>
<th>Artist</th>
<th>Title</th>
<th>Album</th>
<th>Albumcover</th>
<th>Play</th>
</tr>";
// output data of each row
while($row = $result->fetch_assoc()) {
echo
"<tr>
<td>" . $row["Artist"]. "</td>
<td>" . $row["Title"]. "</td>
<td>" . $row["Album"]. "</td>
<td>" . $row["Albumcover"]
. "</td>
<td>" . $row["Play"] . "</td>
</tr>";
}
echo "</table>";
} else {
echo "0 results";
} ?>
</body>
</html>
This is what my php coding looks like
如何用 php 和 mysql 创建这个路径
【问题讨论】: