不幸的是,当我单击按钮时,我目前正在使用点数系统制作一个小型站点 进行查询,没有错误,但是该点未添加到数据库中,这是我的代码:
Point.php
<div class="posttest">
<form action="traitement/point.php" method="get">
<p>
<input type="submit" name="nbVoteP"/><br>
</p>
</form>
</div>
和处理页面:
<?php
require('connexion.php');
$reponse = $bdd->query("UPDATE `image` SET `nbVoteP` = '+1' WHERE `
image`.`id` = 1");
header('Location: ../point.php');
?>
谢谢您的回答