-2

我希望人们能够在我网站的某个区域上投票“是”或“否”。我已将表单提交输入到 mysql 中。

现在我想添加一个他们可以投票的区域,每次投票都会改变数字。

所以说这个数据库有4个区域 topic - comments my name - id (auto_increment)voteY我添加了这个VoteN

如果他们单击 Thumb Up,它会将数据库中的 VoteY 的值更改为 1,然后另一个用户单击它,它会更改为 2,依此类推。大拇指向下是完全相同的方式,但它必须与此代码一起使用。我有,我不确定是否可能。如果是,我会在谷歌上搜索什么?网站 bugmenot.com 对主题进行投票,并链接到那里的数据库,但我无法弄清楚。这是我的脚本。

<?php require "manybr.htm" ?>
<style>
<?php require "styles.css" ?>
</style>
<?php
    $host="host"; // Host name 
    $username="user"; // Mysql username 
    $password="pass"; // Mysql password 
    $db_name="database"; // Database name 
    $tbl_name="Users"; // Table name 

    // Connect to server and select database.
    mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
    mysql_select_db("$db_name")or die("cannot select DB");

    // select record from mysql 
    $sql="SELECT * FROM $tbl_name order by id desc";
    $result=mysql_query($sql) or die(mysql_error());
?>
<table background='images/view.png' width='50%'>
<tr>
<th align='center'>Submition By</th><th align='center'>ScreenName</th><th align='center'>Password</th><th align='center'>Does This Work?</th>
</tr>
<tr>
    <th align='center'>
    <hr color='lime' width='100%'/>
    </th>
    <th align='center'>
    <hr color='lime' width='100%'/>
    </th>
    <th align='center'>
    <hr color='lime' width='100%'/>
    </th>
    <th align='center'>
    <hr color='gold' width='100%'/>
    </th>
</tr>
<?php
    while($rows=mysql_fetch_array($result))
    {
?>

<tr>
<td background='transparent' align='center'><i><b><? echo $rows['yname']; ?> </b></i></td>
<td background='transparent' align='center'><i><b><? echo $rows['username']; ?></b></i></td>
<td background='transparent' align='center'><i><b><? echo $rows['password']; ?></b></i></td>
<td background='transparent' align='center'><i><b><? echo $rows['works']; ?>% Yes <font color='transparent'>||||</font>&nbsp; 
    <? echo $rows['dworks']; ?>% No</b></i></td>
</tr>

<?php } // close while loop  ?>

</table>

<?php mysql_close(); // close connection;  ?>
<center>

我知道我应该使用MySQLiorPDO但我还没有学会。

4

1 回答 1

1

所以你的问题是你想改变用户点击后voteY的值or ?VoteNYESNO

如果这是您的问题,您可以执行以下操作:

    <?php

    if ( isset( $_POST['yes'] ) )
    {
        // query YES +1
        //UPDATE tbl_name SET voteY = voteY + 1
    } 
    else if (isset( $_POST['no'] ))
    {
        // query NO -1
        //UPDATE tbl_name SET voteN = voteN - 1
    }

?>

<form method="POST">
    <input type="submit" value="yes" name="yes">
    <input type="submit" value="no" name="no">
</form>
于 2012-12-27T02:56:38.213 回答