我有一个名为艺术家的mySQL表,索引页面包含所有艺术家姓名的列表,我希望用户点击艺术家的名字进入包含艺术家的个人资料页面&# 39; s数据,所以php会根据个人资料模板和艺术家的id创建个人资料页面,而不是为每个艺术家创建数百个页面,我该怎么做
编辑: 获取php页面代码
<?php
include("config.php"); //include config file
//sanitize post value
$page_number = filter_var($_POST["page"], FILTER_SANITIZE_NUMBER_INT, FILTER_FLAG_STRIP_HIGH);
//throw HTTP error if page number is not valid
if(!is_numeric($page_number)){
header('HTTP/1.1 500 Invalid page number!');
exit();
}
//get current starting point of records
$position = (($page_number-1) * $item_per_page);
//fetch records using page position and item per page.
$results = $mysqli->prepare("SELECT name, location, score, img FROM artists ORDER BY score DESC LIMIT ?, ?");
//bind parameters for markers, where (s = string, i = integer, d = double, b = blob)
//for more info https://www.sanwebe.com/2013/03/basic-php-mysqli-usage
$results->bind_param("ss", $position, $item_per_page);
$results->execute(); //Execute prepared Query
$results->bind_result($name, $location, $score, $img); //bind variables to prepared statement
//output results from database
while($results->fetch()){ //fetch values
echo "<a href=<div class=\"feed_item\">";
echo "<img src=\"img/" . $img . ".jpg\"class=\"feed_img\">";
echo "<h2 class=\"feed_title\">" . $name . "</h2>";
echo "<h4 class=\"feed_subtitle\">" . $location . "</h4>";
echo "</div>";
}
?>
我的桌子上有ID栏,我感到迷茫,不知道在谷歌/这里搜索什么。
答案 0 :(得分:1)
如果您提供一些代码来展示您当前如何查询数据库以获取所有艺术家的列表,那么我们将能够为您提供更多帮助。
一般而言,您需要做的是执行查询然后遍历每个结果。在循环中,您需要设置指向artist.php?id=XX
的链接,其中XX是循环中特定艺术家的ID。
然后,您可以创建一个名为artist.php
的新脚本,该脚本具有查询以获取在GET请求中发送的ID。
e.g。
select * from artists where id='$id'
然后,您可以执行此查询,获取此艺术家的结果,然后在屏幕上显示详细信息。
这是高级别的,但希望能让您了解需要采取的方法。