Scrollbox problem...?
I have a php script that looks like this
random.php
[php]<?
$textfile ="random.txt";
$items = file("$textfile");
$item = rand(0, sizeof($items)-1);
echo "<center>".$items[$item]."</center>";
?>
[/php]
random.txt looks like this
[php]
<? include 'http://www.YOURSITE.com/random.php' ?>
Hejsan
Lol
random text
random
care
[/php]
As you can see, this script randomly choose a word or phrase from random.txt...
Now I want those word or phrases appear in a scrollbox, but I didn't have any succes on doing this, so im asking for help here, if you didn't understand, just tell me and I will try to explain better.
Thanks in advance!