Voting in PHP
This is code for put up voting and down voting to any content .
It's Contain Simple PHP coding.
U need run this program config.php,up_vote.php,down_vote.php. so download below coding.
voting.php
<html> <head> <title>Voting with PHP</title> <style type="text/css"> body { font-family:'Georgia', Times New Roman, Times, serif; } #main { height:80px; border:1px solid #09F;margin-bottom:7px; width:500px; } a { color:#DF3D82; text-decoration:none; } a:hover { color:#DF3D82; text-decoration:underline; } .up { height:40px; font-size:24px; text-align:center; background-color:#009900; margin-bottom:2px; -moz-border-radius: 6px;-webkit-border-radius: 6px; } .up a { color:#FFFFFF; text-decoration:none; } .up a:hover { color:#FFFFFF; text-decoration:none; } .down { height:40px; font-size:24px; text-align:center; background-color:#cc0000; margin-top:2px; -moz-border-radius: 6px;-webkit-border-radius: 6px; } .down a { color:#FFFFFF; text-decoration:none; } .down a:hover { color:#FFFFFF; text-decoration:none; } .box1 { float:left; height:80px; width:50px; } .box2 { float:left; width:440px; text-align:left; margin-left:10px;height:60px;margin-top:10px; font-weight:bold; font-size:18px; } img { border:none; padding-top:7px; } </style> </head> <body> <div align="center"> <h3>Voting With PHP</h3> <?php include('config.php'); $sql=mysql_query("SELECT * FROM messages LIMIT 9"); while($row=mysql_fetch_array($sql)) { $msg=$row['msg']; $mes_id=$row['mes_id']; $up=$row['up']; $down=$row['down']; ?> <div id="main"> <div class="box1"> <div class='up'> <a href="up_vote.php?id=<?php echo $mes_id; ?>" class="vote" id="<?php echo $mes_id; ?>" name="up"> <?php echo $up; ?></a></div> <div class='down'> <a href="down_vote.php?id=<?php echo $mes_id; ?>" class="vote" id="<?php echo $mes_id; ?>" name="down"> <?php echo $down; ?></a></div> </div> <div class='box2' ><?php echo $msg; ?></div> </div> <?php } ?> </div> </body> </html>
No comments:
Post a Comment