我正在制作一个带有个人投票链接的投票系统。 我想建立个人投票页面以注册IP,并确保IP每人每天只能投票一次(创建者)。 投票页面如下所示:
http://forum.thestronghold.nl/vote4creators.php
有人可以帮我修复投票链接页面吗?现在它看起来像这样:
$sql = "UPDATE `DB3121646`.`vote4creator` SET `Votes` = Votes +1 WHERE `vote4creator`.`id` = 6;";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo " Creator : " . $row["Creator"]. " "." Votes : ".$row["Votes"]."<br>";
}
} else {
echo "";
}
$conn->close();
?>
<?php
/* Redirect browser */
header("Location: http://forum.thestronghold.nl/vote4creators.php");
/* Make sure that code below does not get executed when we redirect. */
exit;
?>
答案 0 :(得分:0)
您需要做的是(简单,但不是理想的解决方案):
您还可以:
我希望你能解决你的问题。
btw:叔叔谷歌如果有很多例子如何在很多方面做到这一点;)