使用mysql和php

时间:2016-03-21 23:48:00

标签: php sql xampp

基本上我必须使用xampp通过mysql和php创建一个自动点唱机类型图表。

我已经完成了设置表格的基础知识,我指的是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 comes up as my online jukebox, and in the Album cover column I want the album art to come up

And this is where my images are, how would i create the path to img folder so the album art comes up?

3 个答案:

答案 0 :(得分:0)

我假设您想要代码中“Albumcover”部分中的图像。如果是这样,你可以回显一个html行。您可以使用相册名称在“jukebox”文件夹中命名图像。代码将显示为

 <td>" . $row["Artist"]. "</td>
 <td>" . $row["Title"]. "</td>
 <td>" . $row["Album"]. "</td>
 <td>" <img src=\"jukebox/".$row["Album"].".png\" >"</td>

因为所有图像都需要是文件类型png,这很容易,只需保存它们并在最后添加.png。数据库中相同的专辑名称必须与文件名相同。您可以使用其他文件类型,例如.jpg。

答案 1 :(得分:0)

我真的没有看到你的问题。 你在“albumcover”中存储了什么? 假设您保存了相册的相对路径。 所以你可以打印出来

<td><img src="' . $row["Albumcover"] . '"></td>

答案 2 :(得分:0)

使用你的mp3作为标签并在新标签中打开它。可能这是你需要的。我假设jukebox / mp3 /作为你的mp3文件夹

<?php
// 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><img src='jukebox/img/" . $row["Albumcover"] ."' alt=".$row["Albumcover"]."></td>
 <td><a href='jukebox/mp3/" . $row["Play"] . "' target='blank'>" . $row["Play"] . "</a>
 </td>

 </tr>";
}