이 기사의 예에서는 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 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); $iph $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); $winph $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 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.