基本上我必須通過使用xampp的mysql和php創建自動存儲塔型圖表。 我已經完成了建立表的基礎知識,我指的是mysql數據庫等。我只是不知道如何編碼我創建的圖像文件夾的路徑。我的圖像文件夾位於我創建的名爲Jukebox的文件夾下的htdocs中。這是我的編碼:如何使用php和mysql上傳圖像文件夾
<!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
謝謝,它的工作,但在albumcover列內每個圖像已被作爲一個小圖標被撕毀的圖像 –
這就是你應該做的事情在css –
使用CSS來使邊界那很簡單 –