<?
if(isset($OK)) {
setcookie("OK", "yes", time()+1*24*60*60*60);
$wahl1 = file("wahl1.txt");
$wahl1 = file("wahl2.txt");
$wahl3 = file("wahl3.txt");
$wahl4 = file("wahl4.txt");
$wahl5 = file("wahl5.txt");
$wahlwert1 = $wahl1[0];
$wahlwert2 = $wahl2[0];
$wahlwert3 = $wahl3[0];
$wahlwert4 = $wahl4[0];
$wahlwert5 = $wahl5[0];
$insgesamt = $wahlwert1 + $wahlwert2 + $wahlwert3 + $wahlwert4 + $wahlwert5;
$new_file = fopen("$wahl.txt");
fwrite($new_file, $wahl + "1");
fclose($new_file);
?>
<b>Ergebnisse:</b><br>
Wahl1 =
<img src="umfrage.gif" height="10" width="<? echo round(($wahl1*100)/$insgesamt); ?>">,
<?php echo round(($wahl1*100)/$insgesamt); ?>%
<br>
Wahl2 =
<img src="umfrage.gif" height="10" width="<?php echo round(($wahl2*100)/$insgesamt); ?>,
<? echo round(($wahl2*100)/$insgesamt); ?>%<br>
$wahl3 =
<img src="umfrage.gif" height="10" width="<?php echo round(($wahl3*100)/$insgesamt); ?>,
<? echo round(($wahl3*100)/$insgesamt); ?>%<br>
$wahl4 =
<img src="umfrage.gif" height="10" width="<?php echo round(($wahl4*100)/$insgesamt); ?>,
<? echo round(($wahl4*100)/$insgesamt); ?>%<br>
$wahl5 =
<img src="umfrage.gif" height="10" width="<?php echo round(($wahl5*100)/$insgesamt); ?>,
<? echo round(($wahl5*100)/$insgesamt); ?>%<br>
<?
}
else {
?>
Wieviele Punkte gebt ihr dieser Seite?
<form method="post" action="umfrage.php">
<input type="radio" value="wahl1">1 Punkt<br>
<input type="radio" value="wahl2">2 Punkte<br>
<input type="radio" value="wahl3">3 Punkte<br>
<input type="radio" value="wahl4">4 Punkte<br>
<input type="radio" value="wahl5">5 Punkte<br>
<input type="submit" value="OK" name="OK"><br>
<a href="umfrage.php">Ergebnisse</a>
<?
}
?>