Hey Guys,
I'm looking for a sorta Text Rotator, similar to a banner rotator but it's text.
Preferably DHTML or valid HTML.
Can anyone point me in the right direction?
Thanks

Hey Guys,
I'm looking for a sorta Text Rotator, similar to a banner rotator but it's text.
Preferably DHTML or valid HTML.
Can anyone point me in the right direction?
Thanks
(DJ-Chad's signature here)
dynamicdrive.com
www.dynamicdrive.com has almost everything![]()
Can be done with php?
Should work.PHP Code:
$text[0] = "Message 1";
$text[1] = "Message 2";
$text[2] = "Message 3";
$text[3] = "Message 4";
$total = count($text) - 1;
$rand = rand(0,$total);
echo( $text[ $rand ] );
Want to hide these adverts? Register an account for free!