PHP-Code:
$path= "http://meinehomepage/bewertungssystem";
$ficdest=$ficdest[0]."beispiel.dat"
Das gesammte Script ist ein Bewertungsscript. Es funktioniert folgendermaßen. Das Script wird auf einer Seite ausgefüht.
In selben Ordern in der die Page mit dem Script gespeichter ist wird die beispiel.dat ebenfalls gespeichert. Mein Problem ist,
dass ich diese Datei in einem anderen Ordner speichern möchte. z. b. im Ordern Info/Berwertungen/
Hier das gesammte Bewertungsscript
PHP-Code:
$path= "http://meinehomepage/bewertungssystem";
$ficdest=$ficdest[0]."beispiel.dat";
}
if (!empty($envoi)) {
$vote=fopen("../Signalmunition/aba/aba_silverspeed_ausgabe.dat", "r");
$old_stats=file("../Signalmunition/aba/aba_silverspeed_ausgabe.dat");
$stats=explode("|", $old_stats[0]);
fclose($vote);
$nbr_votes=$stats[1];
$moy_votes=$stats[2];
if ($stats[4] != $REMOTE_ADDR) {
$nbr_votes +=1;
$moy_votes=((($stats[1]*$stats[2])+$note)/$nbr_votes);
}
$ip_vote=$REMOTE_ADDR;
$vote=fopen("../Signalmunition/aba/aba_silverspeed_ausgabe.dat", "w+");
$new_stats=fputs($vote, "$new_count|$nbr_votes|$moy_votes|$stats[3]|$ip_vote");
fclose($vote);
}
print ("<form method=post>");
$old_stats=file("../Signalmunition/aba/aba_silverspeed_ausgabe.dat");
$stats=explode("|", $old_stats[0]);
if ($stats[2]>=5)
{
$star = "$path/images/5star.gif" ;
}
if ($stats[2]<=4.5)
{
$star = "$path/images/45star.gif" ;
}
if ($stats[2]<=4)
{
$star = "$path/images/4star.gif" ;
}
if ($stats[2]<=3.5)
{
$star = "$path/images/35star.gif" ;
}
if ($stats[2]<=3)
{
$star = "$path/images/3star.gif" ;
}
if ($stats[2]<=2.5)
{
$star = "$path/images/25star.gif" ;
}
if ($stats[2]<=2)
{
$star = "$path/images/2star.gif" ;
}
if ($stats[2]<=1.5)
{
$star = "$path/images/15star.gif" ;
}
if ($stats[2]<=1)
{
$star = "$path/images/1star.gif" ;
}
if ($stats[2]<=0.5)
{
$star = "$path/images/05star.gif" ;
}
if ($stats[2]<=0)
{
$star = "$path/images/00star.gif" ;
}
print ("<font size=1 face=Verdana color=red><img src=\"$star\"
alt=\"Durchschnittliche Bewertung: $stats[2]\"> $stats[1] Bewertung(en) </font>");
for ($i=1; $i<=5; $i++)
?>
Kommentar