Ich hab den Script genau so übernommen wie er im Tutorial steht un auch alle datein erstellt un die entsprechenden rechte vergeben doch der script funzt net und ich hab keine Ahnung warum...
Ich poste hier mal den script wie ich ihn habe, vielleicht hab ich ja was übersehen:
Ich poste hier mal den script wie ich ihn habe, vielleicht hab ich ja was übersehen:
PHP-Code:
<?php
if(isset($OK)) {
setcookie("OK", "yes", time()+1*24*60*60*60);
$wahl1 = file("wahl1.txt");
$wahl2 = file("wahl2.txt");
$wahl3 = file("wahl3.txt");
$wahlwert1 = $wahl1[0];
$wahlwert2 = $wahl2[0];
$wahlwert3 = $wahl3[0];
$insgesamt = $wahlwert1 + $wahlwert2 + $wahlwert3;
$new_file = fopen("$wahl.txt");
fwrite($new_file, $wahl + "1");
fclose($new_file);
?>
<html>
<head>
<title>Umfrage</title>
</head>
<body>
<b>Ergebnisse:</b><br>
Wahl1 = <img src="umfrage.gif" height="10" width="<?php 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); ?>">,
<?php echo round(($wahl2*100)/$insgesamt); ?>%
<br>
Wahl3 = <img src="umfrage.gif" height="10" width="<?php echo round(($wahl3*100)/$insgesamt); ?>">,
<?php echo round(($wahl3*100)/$insgesamt); ?>%
<br>
<?php
} else {
echo "<form method=post action=umfrage.php>";
echo "<input type=radio vaule=wahl1>Wahl1<br>";
echo "<input type=radio vaule=wahl2>Wahl2<br>";
echo "<input type=radio vaule=wahl3>Wahl3<br>";
echo "<input type=submit value=OK name=OK><br>";
echo "<a href=umfrage.php>Ergebnisse</a>";
}
?>
</body>
</html>
EDIT:
php-tags by grandmaster mrhappiness himself
Kommentar