投票方式-Mysql

发布于 2024-10-21 23:21:02 字数 395 浏览 1 评论 0原文

我想使用两个按钮根据选择增加数据库表中的两个字段。

Field 1: blue
Field 2: yellow

例如:

Blue:   (3)    - Select (+1) - Button 1 (increment the #3)
Yellow: (5)    - Select (+1) - Button 2 (increment the #5)

这段非常简单的代码在 php 中怎么可能实现?

我已经知道如何建立connection.php..

还有什么?

详细信息:

说数据库名称是投票:有两个字段,蓝色和黄色。人们可以投票选出他们最喜欢的颜色:蓝色或黄色。单击按钮或单选按钮以使用提交或自动更新(更容易)来增加它们的值

I want to use two buttons to increment two fields in a database table according to selection.

Field 1: blue
Field 2: yellow

For example:

Blue:   (3)    - Select (+1) - Button 1 (increment the #3)
Yellow: (5)    - Select (+1) - Button 2 (increment the #5)

How is this very simple code possible in php?

I already know how to make the connection.php..

what else?

Details:

say database name is voting: there are two fields, blue and yellow. People can vote for their favorite color: blue or yellow. Click a button or radio in order to increment them values, using a submit or autoupdate (which ever easier)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

是伱的 2024-10-28 23:21:02
if ($_GET['input']=="blue") $Field="Field 1"; 
elseif ($_GET['input']=="yellow") $Field="Field 2";
else echo "error";

mysql_query("UPDATE table SET $Field=$Field+1 WHERE Condition");

请更具体一点。

if ($_GET['input']=="blue") $Field="Field 1"; 
elseif ($_GET['input']=="yellow") $Field="Field 2";
else echo "error";

mysql_query("UPDATE table SET $Field=$Field+1 WHERE Condition");

be a little more specific please.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文