所以我正在为我年轻的堂兄创建一个钢琴库网站。
目前我使用foreach函数显示数据库中的所有数据。现在,这很有效,我设法让一些功能正常工作,但我遇到的一个问题是“计数器”。
超级简单的概念,除了我希望每个条目都有一个计数器。
通过“计数器”我的意思是点击链接后,它会为计数添加+1。这样每个链接都会“访问100次”或“访问34次”等。
我尝试了以下内容:
if($mysqli){
$result = mysqli_query($mysqli,"SELECT * FROM testtable ".$orderbyfilter);
$rows = $result->fetch_all(MYSQLI_ASSOC);
foreach($rows as $row) {
echo "<tr id='entry'><td>";
echo ucwords($row['name']);
echo "</td><td align='center'>";
echo '<a href="' . $row['url'] . '">url</a>';
echo "add hit:";
echo "<a href='?action=callfunction'>Click</a>";
//current counter script
if(isset($_GET['action']) && $_GET['action'] == 'callfunction'){
$hitcount = $row['hitcount'] + 1;
$id = $row['id'];
// why doesn't this work?
$sql="UPDATE testtable SET hitcount='$hitcount' WHERE id='".$id."'";
$result=mysqli_query($con,$sql);
}
echo "</td><td align='center'>";
echo $row['level'];
echo "</td><td align='center'>";
echo $row['hitcount'];
echo "</td></tr>";
}
mysqli_close($mysqli);
} else {
echo "table did not correctly display!";
}
显然方法:
$sql="UPDATE testtable SET hitcount='$hitcount' WHERE id='".$id."'";
不起作用,因为当我点击链接时,它会更新具有相同命中数的所有条目。但是,当我将其更改为:
$sql="UPDATE testtable SET hitcount='$hitcount' WHERE id='2'";
它完美无缺,只能使用id=2
修改行的hitcount。
显然问题与 "foreach"
有关,并将$row[id]
设置为变量,但说实话,我可以使用一些帮助。
它与变量变量有关吗?我没有线索。任何帮助表示赞赏。
答案 0 :(得分:0)
只需像这样更改您的查询即可更新计数器
$sql="UPDATE testtable SET `hitcount`=hitcount+1 WHERE id=".$id;
不要使用围绕计数器值的单引号,因为它是integer
答案 1 :(得分:0)
这对我有用。您可以根据需要对其进行修改。
需要做的是为相关的&#34; id&#34;传递额外的GET参数。在URL中,然后在WHERE
子句中传递该变量。
还添加了一个标题,以便在单击指定行的相关URL后自动重定向并显示结果并防止出现以下警告:
警告:mysqli_fetch_array()要求参数1为mysqli_result,布尔值在...中给出
旁注: 请阅读以下代码中留下的评论,以获取更多信息。
<?php
ob_start(); // keep this, it's for the header
$DB_HOST = 'xxx'; // Replace
$DB_USER = 'xxx'; // with
$DB_PASS = 'xxx'; // your
$DB_NAME = 'xxx'; // own
$Link = new mysqli($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME);
if($Link->connect_errno > 0) {
die('Connection failed [' . $Link->connect_error . ']');
}
// Your original query. You can replace it if needed.
// $result = mysqli_query($Link,"SELECT * FROM testtable ".$orderbyfilter);
$result = mysqli_query($Link,"SELECT * FROM testtable");
while ($row = mysqli_fetch_array($result)) {
echo "<tr id='entry'><td>";
echo "ID: " . $row['id'];
$var = $row['id']; // used for the URL
echo "<br>";
echo $row['hitcount'];
echo ucwords($row['name']);
echo "</td><td align='center'>";
echo '<a href="' . $row['url'] . '">url</a>';
echo " Add hit: ";
echo "<a href='?action=callfunction&id=$var'>Click</a> ";
if(isset($_GET['action']) && $_GET['action'] == 'callfunction'){
// Used for the query and escape the URL
$var = mysqli_real_escape_string($Link, $_GET['id']);
$sql="UPDATE testtable SET hitcount = hitcount +1 WHERE id='".$var."'";
$result=mysqli_query($Link,$sql);
// Added a header, otherwise the old method will generate the following warning
// Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in...
header("Location: http://www.example.com/your_counter_file.php");
exit; // Keep this in order to stop further execution
// ^ Change the url in header above to reflect your Web site's address
} // Closing brace for isset
echo "</td><td align='center'>";
echo $row['level'];
echo "</td><td align='center'>";
echo $row['hitcount'];
echo "</td></tr>";
} // Closing brace for while loop
mysqli_close($Link);