Ho trovato un "semplice" codice per creare sondaggio ma oltre che a mettere a video la domanda e le riposte, non funziona

A sx di ogni risposta devo mettere il "radio" ed in fondo il bottone "vota"

file results.php

Codice PHP:
<?php
$question
= "<span style=\"color:#008040; text-align:center;\">Come hai conosciuto i prodotti?</span>";
$answers = array("Internet", "Depliant", "Casualmente", "Giornali o televisione", "Da amici o conoscenti");
$query = @mysql_query("SELECT * FROM sondaggio");
$result = @mysql_fetch_array($query);
echo
"{$question}<br /><br />";
for (
$x = 1; $x <= count($answers); $x++) {
$total = $total + $result[tot_ . $x];
}
for (
$i = 1; $i <= count($answers); $i++) {
@
$percent = $result[tot_ . $i] / $total;
$percent = $percent * 100;
$percent = number_format($percent, 1);
echo
"" . $answers[$i - 1] . "<br /><span style=\"color:#ff8000;\">({$percent}%)</span><br />";
}
?>
file vote.php

Codice PHP:
<?php
if ($_COOKIE[JacoZ_Poll] == TRUE) {
echo
"Hai già votato, grazie!";
}
else
{
mysql_query("UPDATE sondaggio SET tot_{$_POST[a]} = tot_{$_POST[a]}+1 ");
setcookie("JacoZ_Poll", "www.jacoz.net", time() + 86400);
header("Location: results.php");
}
?>
nel file esterno che poi viene richiamato in tutte le pag del sito

Codice PHP:
require_once "connessione.php";
!-- Richiama i file per il sondaggio e il voto -->
<p style="text-align:left; margin-left:8px; margin-top:-5px;">
<?php
include ("results.php");
include (
"vote.php");
?>
echo "<form action="vote.php" method="post">";
echo "<strong>{$question}</strong><br /><br />n";
for ($i = 0; $i <= count($answers) - 1; $i++) {
echo "<input type="radio" name="a" value="" . ($i + 1) . "">{$answers[$i]}<br />n";
}
echo " <br /><input type="submit" value=" Vota ">n";
echo " <a href="results.php">Risultati</a>n";
echo "</form>n";
</p>