zoukankan      html  css  js  c++  java
  • 一个小的投票系统

    文件http://files.cnblogs.com/files/liuwenbohhh/vote.zip

    index.php

    <!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
    <meta http-equiv="X-UA-Compatible" content="IE=8" />
    <link rel="stylesheet" type="text/css" href="issue.css" />
    <title>控制台</title>
    </head>
    <body>
    <div id="main">

    <?php
    $con = mysql_connect("localhost","root","");
    if (!$con)
    {
    die('Could not connect: ' . mysql_error());
    }

    mysql_select_db("vote", $con);

    $result = mysql_query("SELECT * FROM vote_user");

    while($row = mysql_fetch_array($result))
    {
    echo "<div class="box">
    <div class="content_left">
    <img src="" alt="" />
    </div>
    <div class="content_center">
    <div class="fig_first">s</div>
    <div class=fig_second">".$row['name']
    ."</div>
    <div class="fig_third">人*4</div>
    </div>
    <div class="content_right">
    <div class="fig_first">s</div>
    <div class="fig_second">s</div>
    <div class="fig_third">
    <a href="update.php?id=".$row['id']."" class="input_zu">投票</a>
    </div>
    </div>
    </div>";

    }

    mysql_close($con);
    ?>
    </div>
    </body>
    </html>

    update.php

    <?php
    function isDiffDays($last_date,$this_date){

    if(($last_date['year']===$this_date['year'])&&($this_date['yday']===$last_date['yday'])){
    return FALSE;
    }else{
    return TRUE;
    }
    }

    $id=$_GET["id"];
    $con = mysql_connect("localhost","root","");
    if (!$con)
    {
    die('Could not connect: ' . mysql_error());
    }

    mysql_select_db("vote", $con);
    $result = mysql_query("SELECT * FROM vote_user where id='{$id}'");
    $data=mysql_fetch_assoc($result);

    $number=++$data["number"];
    echo $number;
    mysql_query("UPDATE vote_user SET number = '{$number}'
    WHERE id = '{$id}'");
    $time=time();
    $ip=$_SERVER['REMOTE_ADDR'];
    mysql_query("INSERT INTO vote_ip (id, userid,ip, time)
    VALUES (NULL,'{$id}', '{$ip}', '{$time}')");
    mysql_close($con);

    ?>

  • 相关阅读:
    python 产生token及token验证
    Django中间件
    docker学习笔记16:Dockerfile 指令 ADD 和 COPY介绍
    Docker 容器镜像删除
    linux查找nginx所在目录
    nginx启动访问
    nginx安装【linux下安装】
    QPS计算
    Jmeter压测问题_Non HTTP response code: org.apache.http.conn.ConnectTimeoutException
    Jmeter压测问题_Non HTTP response code: java.net.ConnectException
  • 原文地址:https://www.cnblogs.com/liuwenbohhh/p/4451275.html
Copyright © 2011-2022 走看看