PHP+MySQL实现的简单投票系统实例,mysql投票系统
PHP+MySQL实现的简单投票系统实例,mysql投票系统
本文实例讲述了PHP+MySQL实现的简单投票系统。分享给大家供大家参考,具体如下:
<html> <head><title>手机系统调查问卷</title> <style type="text/css"> <!-- span{ width:600px; height:100px; background-color:write; postion:relative; border:1px #cccccc solid; } div{ width:60px; height:1px; background-color:blue; postion:absolute; bottom:0; } --> </style> </head> <body> 你现在使用的手机是什么系统? <form id="form1" method="POST" action="count.php"> <input type="radio" name="phone" value="1"> Android安卓 <input type="radio" name="phone" value="2"> Symbian塞班 <br> <input type="radio" name="phone" value="3"> iphone苹果 <input type="radio" name="phone" value="4"> Google谷歌 <br> <input type="radio" name="phone" value="5"> Winphone微软 <input type="radio" name="phone" value="6"> 其它 <br> <input type="submit" value="提交"> </form> <span> 当前票数:<br> <?php include 'connect.php'; $sql="select answer from countone"; $rs=mysql_query($sql); $total=mysql_num_rows($rs); $sql="select * from countone where answer=1"; $rs=mysql_query($sql); $android=mysql_num_rows($rs); $sql="select * from countone where answer=2"; $rs=mysql_query($sql); $symbian=mysql_num_rows($rs); $sql="select * from countone where answer=3"; $rs=mysql_query($sql); $iphone=mysql_num_rows($rs); $sql="select * from countone where answer=4"; $rs=mysql_query($sql); $google=mysql_num_rows($rs); $sql="select * from countone where answer=5"; $rs=mysql_query($sql); $winphone=mysql_num_rows($rs); $sql="select * from countone where answer=6"; $rs=mysql_query($sql); $other=mysql_num_rows($rs); ?> <table border="0"> <th>android</th><th>Symbian</th><th>iphone</th><th>Google</th><th>winphone</th><th>other</th> <tr> <td><?php echo $android ?>票</td> <td><?php echo $symbian ?>票</td> <td><?php echo $iphone ?>票</td> <td><?php echo $google ?>票</td> <td><?php echo $winphone ?>票</td> <td><?php echo $other ?>票</td> </tr> <tr> <td><?php for ($i=1;$i<=$android/$total+1;$i=$i+0.1){ echo "<div></div>"; } ?></td> <td><?php for ($i=1;$i<=$symbian/$total+1;$i=$i+0.1){ echo "<div></div>"; } ?></td> <td><?php for ($i=1;$i<=$iphone/$total+1;$i=$i+0.1){ echo "<div></div>"; } ?></td> <td><?php for ($i=1;$i<=$google/$total+1;$i=$i+0.1){ echo "<div></div>"; } ?></td> <td><?php for ($i=1;$i<=$winphone/$total+1;$i=$i+0.1){ echo "<div></div>"; } ?></td> <td><?php for ($i=1;$i<=$other/$total+1;$i=$i+0.1){ echo "<div></div>"; } ?></td> </tr> </table> </span> </body> </html>
写的有点啰嗦,有点笨但很实用
<?php include 'connect.php'; $name=$_POST['phone']; $sql="insert into countone values(null,$name,now(),null)"; mysql_query($sql); ?> <script type="text/javascript"> alert ("投票成功!"); location="question.php"; </script>
链接mysql:
<?php mysql_connect("localhost","root",""); mysql_select_db("vote"); mysql_query("set names utf8"); ?>
更多关于PHP相关内容感兴趣的读者可查看本站专题:《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
您可能感兴趣的文章:
- PHP+MySQL投票系统的设计和实现分享
- PHP投票系统防刷票判断流程分析
- PHP+redis实现添加处理投票的方法
- PHP+AJAX实现投票功能的方法
- 基于PHP+jQuery+MySql实现红蓝(顶踩)投票代码
- PHP结合jQuery实现红蓝投票功能特效
- 一个简单的PHP投票程序源码

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

CMS stands for Content Management System. It is a software application or platform that enables users to create, manage, and modify digital content without requiring advanced technical knowledge. CMS allows users to easily create and organize content

Arrays are linear data structures used to process data in programming. Sometimes when we are processing arrays we need to add new elements to the existing array. In this article, we will discuss several ways to add elements to the end of an array in PHP, with code examples, output, and time and space complexity analysis for each method. Here are the different ways to add elements to an array: Use square brackets [] In PHP, the way to add elements to the end of an array is to use square brackets []. This syntax only works in cases where we want to add only a single element. The following is the syntax: $array[] = value; Example
