OK this is what i have so far but the results after the first time voting are not working and still get an error.
Warning: Variable passed to each() is not an array or object in /home/virtual/site3/fst/var/www/html/aaa/clients/poll.php on line 9
Line 9 of course is :
while (list($key, $val) = each($file_array)) {
VOting first time it works great. After the first time voting and then go back to the page and I should see just results. Well thats not working at all. Poll results are blank and get that error.
Please help if you can.
<?php
//include "../tpl/clients_top.ihtml";
include "../conf/sys.php";
//First checks for cookies
if ($_COOKIE['Voted'] == 'Yes'){
//include "../tpl/clients_top.ihtml";
echo ("<center>Hey idiot, didn't I say to vote once a day?</center>");
// display results if cookie is found
while (list($key, $val) = each($file_array)) {
$total += $val;
}
echo "<center>\n";
echo "<h3>$pollname Poll vote results :</h3>";
echo "<TABLE CELLSPACING=2 CELLPADDING=1 BORDER=1>";
echo "<tr><th>What</th><th>Percentage</th><th>Votes</th></tr>";
while (list($key, $val) = each($ANSWER)) {
if ($total > 0)
{ $percent = $file_array[$key] * 100 / $total;
}
$percent_int = floor($percent);
$percent_float = number_format($percent, 1);
$tp += $percent_float;
echo "<tr><td> $ANSWER[$key] </td><td><img height=9
src=\"$IMG_DIR_URL/vote_left.gif\"><img height=9 width=\"$percent_int\"
src=\"$IMG_DIR_URL/vote_middle.gif\"><img height=9
src=\"$IMG_DIR_URL/vote_right.gif\"> $percent_float %
</td><td>$file_array[$key]</td></tr></center>";
}
echo "</TABLE><br>";
}else{
if (! $vote && ! $result) {
// first time no vote and no result so display the form if no cookie found
echo "<center>\n";
echo "<FORM METHOD=\"POST\">\n";
echo "<TABLE WIDTH=50% BORDER=1><TR><TD><TABLE WIDTH=\"100%\" BORDER=0>\n";
echo "<TR><TH>$QUESTION</TH></TR>\n";
while (list($key, $val) = each($ANSWER)) {
echo "<TR><TD align=\"left\"><INPUT TYPE=\"radio\" NAME=\"answer\" VALUE=\"$key\"> $val</TD></TR>\n";
}
echo "<TR><TD align=\"center\"><INPUT TYPE=\"Submit\" NAME=\"vote\" VALUE=\" Vote \"></TD></TR>\n";
echo "<TR><TD align=\"center\"><INPUT TYPE=\"Submit\" NAME=\"result\" VALUE=\" See Result \"></TD></TR>\n";
echo "</TABLE></TD></TR></TABLE></FORM></center>";
} else {
$file_array = file($RESULT_FILE_NAME); // or error("Can not open \$RESULT_FILE_NAME");
// Save result after voting
if ($answer < count($ANSWER) && $vote) {
if (count($file_array) < count($ANSWER)) {
$file_array = array("0\n", "0\n", "0\n", "0\n", "0\n", "0\n", "0\n", "0\n", "0\n", "0\n");
}
$old_answer = $file_array[$answer];
$old_answer = preg_replace("/\n\r*/", "", $old_answer);
$file_array[$answer] = ($old_answer + 1)."\n";
$file = join('', $file_array);
$fp = fopen("$RESULT_FILE_NAME", "w"); //or error("Can not write \$RESULT_FILE_NAME");
flock($fp, 1);
fputs($fp, $file);
flock($fp, 3);
fclose($fp);
setcookie ("Voted", "Yes", time() + 86400);
// finished voting so set cookie
echo "<center><b>Your Vote has been recorded</b></center>\n";
}
// Display result after voting
while (list($key, $val) = each($file_array)) {
$total += $val;
}
echo "<center>\n";
echo "<h3>$pollname Poll vote results :</h3>";
echo "<TABLE CELLSPACING=2 CELLPADDING=1 BORDER=1>";
echo "<tr><th>What</th><th>Percentage</th><th>Votes</th></tr>";
while (list($key, $val) = each($ANSWER)) {
$percent = $file_array[$key] * 100 / $total;
$percent_int = floor($percent);
$percent_float = number_format($percent, 1);
$tp += $percent_float;
echo "<tr><td> $ANSWER[$key] </td><td><img height=9
src=\"$IMG_DIR_URL/vote_left.gif\"><img height=9 width=\"$percent_int\"
src=\"$IMG_DIR_URL/vote_middle.gif\"><img height=9
src=\"$IMG_DIR_URL/vote_right.gif\"> $percent_float %
</td><td>$file_array[$key]</td></tr></center>";
}
echo "</TABLE><br>";
}
}
//end else
//include "../tpl/clients_bottom.ihtml";
?>