Hi und Hallo ich habe ein kleine problem und würde mich voll über eure hilfe freuen!
Ich habe dieses scribt
<?php
$filename = "random.txt";
$file = file($filename);
srand((double)microtime()*1000000);
while ($RandomRotator == "") {
$RandomRotator = ereg_replace("\n","",$file[rand(0,count($file))]);
}
## This prints the banner, quotes or random text, or whatever is in the random.txt file
print "$RandomRotator";
?>
Jetzt möchte ich, dass aus der Datei Random.txt
verschiedene ausschnitte zufällig angezeigt werden
z.b.
absatz 1
absatz 5
absatz 18
absatz 52
kann mir da jemand helfen?
Ich habe dieses scribt
<?php
$filename = "random.txt";
$file = file($filename);
srand((double)microtime()*1000000);
while ($RandomRotator == "") {
$RandomRotator = ereg_replace("\n","",$file[rand(0,count($file))]);
}
## This prints the banner, quotes or random text, or whatever is in the random.txt file
print "$RandomRotator";
?>
Jetzt möchte ich, dass aus der Datei Random.txt
verschiedene ausschnitte zufällig angezeigt werden
z.b.
absatz 1
absatz 5
absatz 18
absatz 52
kann mir da jemand helfen?
Kommentar