Do u guys know of any text rotating and banner rotating scripts - a simple one ???
Does anyone know any text rotating script?
Collapse
X
-
Tags: None
-
Very simple:Originally posted by reggyDo u guys know of any text rotating and banner rotating scripts - a simple one ???
Example: http://www.integer.dk/gfy/rand.php
Source: http://www.integer.dk/gfy/rand.phps
You can add as many links or banners as you want..Last edited by mortenb; 03-26-2005, 05:16 AM. -
Mortenb-thanx the response. I want to be able to display about 10links on a page and have them rotate from a list of about 20 links - how can i do that?Comment
-
the easiest would be to put the links in a mysql database and call them with and sql query like this one:Originally posted by reggyMortenb-thanx the response. I want to be able to display about 10links on a page and have them rotate from a list of about 20 links - how can i do that?
Then the sql code would select 10 random links each time it is called..Code:SELECT link FROM links ORDER BY RAND() LIMIT 0,10Comment

Comment