我正在开发一个带有 html 和 php 的网站...
到目前为止,我为页面上的“赞”按钮所做的如下(概念相同,只有名称在 facebook 上不同,在我的网站上是 Points Up)
<form method="post">
<input type="hidden" value="<?php echo $posts[postid]; ?>" name="postid">
<input type="submit" name="pointsup" value="Points Up" />
</form>
以上将创建名称为 Points Up 的按钮。
if(isset($_POST['pointsup']))
{ in this if block i have written all queries to update database and user interface and all
}
我想要的不是那个按钮,而是应该有一些链接女巫将运行我的 sql 代码。
我也尝试过 JavaScript,但它没有任何帮助
提前感谢您的回答!