Mam taką prostą sondę:
<?
################################################################################
#################
#
# Project : phpVote
# File name : vote.php
# Last Modified By : Erich Fuchs
# e-mail : office@smartisoft.com
# Purpose : Voting's
# Version : 1.20
#
################################################################################
#################
################################################################################
#################
# Configuration
// mySQL Stuff
$server = "sq..; // Your Host, most cases localhost
$db_user = "d"; // Your mySql Username
$db_pass = "n"; // Your mySql Password
$database = "d"; // Your phpVote-Database
// Size Stuff
$vote_width = "200";
$votebar_width = "80%";
$votebar_height = "10";
// Language Stuff
$vote_question = "Here comes the Question !?!";
$vote_answer = "Answer";
$vote_vote = "Vote";
$vote_button = "Vote";
// Optical Stuff
$htmlheader="
<title>phpVote</title>
<style type=text/css>
body { background:#E2E2E2; margin: 10px; font-family: Verdana; }
a
:link { color
:#333333; font-weight:bold; text-decoration:underline; font-family: Verdana; } a:visited { color:#555555; font-weight:bold; text-decoration:underline; font-family: Verdana; }
a:active { color:#FFCC00; font-weight:bold; text-decoration:underline; font-family: Verdana; }
a:hover { color:#FF9900; font-weight:bold; text-decoration:none; font-family: Verdana; }
td.votebarout { background: #EEEEEE; border:0px; }
td.votebarin { background: #FFCC00; border:0px; }
td.votetext { font-size:8pt; }
td.votequest { font-size:10pt; font-weight:bold; text-align:center;}
td.votefooter { font-size:8pt; text-align:center; }
div.votespace { font-size:4pt; text-align:center; }
</style>
";
// Some Stuff
$cookie_time = 12; // Vote Timeout in hours (set with Cookies)
$ver = "1.20";
# DO NOT CHANGE ANYTHING BEHIND THIS LINE !!!
################################################################################
#################
if ($vote && !$HelloCheater) {
mysql_connect($server,$db_user,$db_pass) or die("Database Connect Error");
$query = mysql_db_query($database,"update votes set votes=votes+1 where name='$vote'") or die("Database Query Error");
mysql_close();
setcookie("HelloCheater", "1", time()+(3600*$cookie_time));
header("Location: $PHP_SELF");
exit;
}
?>
<DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="robots" content="index, nofollow">
<meta name="revisit-after" content="20 days">
<?
echo "<form action=\"$PHP_SELF\" method=\"POST\">"; $result=mysql_db_query($database,"select sum(votes) as sum from votes") or
die("Database Query Error");; if($result) {
}
$result=mysql_db_query($database,"select * from votes order by votes DESC") or
die("Database Query Error");; echo "<table border=0 width=$vote_width><tr><td class=\"votequest\" colspan=\"3\">$vote_question<br><br></td></tr><tr><td class=\"votetext\">$vote_vote</td><td class=\"votetext\">$vote_answer</td><td class=\"votetext\">%</td></tr>\n"; echo "<tr><td align=center><input type=radio name=vote value=\"$row[0]\"></td>"; echo "<td class=\"votetext\" colspan=\"2\">" .$row[0]."</td></tr><tr> <td class=\"votetext\" align=\"center\">".$row[1]."</td><td class=\"votetext\">";
if($sum && (int)$row[1]) {
$per = (int)(100 * $row[1]/$sum);
echo "<table align=center border=0 cellspacing=0 cellpadding=1 width=\"$votebar_width\" height=\"$votebar_height\">\n"; echo " <td class=\"votebarout\">\n"; echo " <table align=left border=0 cellspacing=0 cellpadding=0 width=\"$per%\" height=\"100%\">\n"; echo " <td class=\"votebarin\">\n"; echo " <div class=\"votespace\"> </div>\n";
echo"</td><td class=\"votetext\">$per</td>"; }
}
echo "<tr><td class=\"votetext\" colspan=\"3\"><input type=submit value=\"$vote_button\"></form></td></tr>";
?>
#
# Table structure for table 'phpVote'
#
CREATE TABLE votes (
name varchar(30) DEFAULT '0' NOT NULL,
votes int(5),
PRIMARY KEY (name)
);
#
# Dumping data for table 'phpVote'
#
INSERT INTO votes VALUES ( 'Answer 1', '1');
INSERT INTO votes VALUES ( 'Answer 2', '2');
INSERT INTO votes VALUES ( 'Answer 3', '3');
INSERT INTO votes VALUES ( 'Answer 4', '4');
No i wszystko ładnie, tylko że po wybraniu opcji i kliknięciu na głosuj nic się nie zmienia.
Co może być tego powodem ?