PDA

View Full Version : Text Rotator



DJ-Chad
31-07-2008, 02:00 PM
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

Swinkid
31-07-2008, 02:29 PM
dynamicdrive.com

Meti
31-07-2008, 05:18 PM
www.dynamicdrive.com has almost everything ;)

L?KE
05-08-2008, 10:26 PM
Can be done with php?




$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 ] );



Should work.

Want to hide these adverts? Register an account for free!