我已经制作了这段代码,它运行良好,但我需要如何在输出文件上创建一个链接(href)。 我尝试了几种方法,但我只是不能,不需要答案,而是需要学习的一些指示。
if ($row = mysqli_fetch_array($result)) {
$output = $row["id"];
}
if ($output) {
echo $output;
}
else {
echo "That is not a valid record on our database";
}
答案 0 :(得分:1)
您应该使用$output
$output = $row["title"];
$output ='FirstSong'; #To test i am using this as FirstSong
echo "<a href='songs?id=".$output."'>Click here</a>"; #You can have any text for href
所以你的代码将是
if ($row = mysqli_fetch_array($result)) {
$output = $row["title"];
}
if ($output) {
echo "<a href='songs?id=".$output."'>Click here</a>";
}
else { echo "That is not a valid record on our database"; }
以下是demo