我是PHP的新手。我正在尝试创建一个填充了数据库中数据的表。表格中的每一行都需要在结尾处有一个按钮,该按钮具有标识“艺术家”姓名的查询字符串,并且需要链接到特定于该个别艺术家的内容。使用我当前的表格,按钮只是重复而不是个人,我不知道如何让他们查询他们所属的艺术家。
<?php
//Query to get artist data
$result = mysqli_query($con,"SELECT * FROM artist LIMIT 10");
if (!$result) {
printf("Error: %s\n", mysqli_error($con));
exit();
}
//show artist data in table
echo "<table><th>BadNoise Artists</th>";
while($row = mysqli_fetch_array($result))
{
echo "<tr><td>" . $row['FirstName'] . "</td><td>" . $row['LastName'] . "</td><td><button>Get External Content</button></td></tr>" ;
}
echo "</table>";
mysqli_close($con);
?>
我正在使用jQuery来填充div,它将显示每个艺术家特有的内容:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").load("demo_test.txt");
});
});
</script>
答案 0 :(得分:2)
这样的事情应该可以解决问题。将艺术家的ID存储在按钮的ID字段中,并通过Jquery获取:
<?php
//Query to get artist data
$result = mysqli_query($con,"SELECT * FROM artist LIMIT 10");
if (!$result) {
printf("Error: %s\n", mysqli_error($con));
exit();
}
//show artist data in table
echo "<table><th>BadNoise Artists</th>";
while($row = mysqli_fetch_array($result)){
echo "<tr><td>" . $row['FirstName'] . "</td><td>" . $row['LastName'] . "</td><td><button id='" . $row['artistId'] . "'>Get External Content</button></td></tr>" ;
}
echo "</table>";
mysqli_close($con);
?>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
var artistId = $(this).attr('id');
$("#div1").load("demo_test" + artistId + ".txt");
});
});
</script>