Hi all,
I'm looking to use a very simple timer on my site to change the SRC of an image (used for rotating banner ads). Something like this:
If timer = 50000 Then img.src="img2.gif"
If timer = 100000 Then img.src="img3.gif"
If timer = 150000 Then img.src="img4.gif"
If timer = 200000 Then img.src="img5.gif"
If timer > 250000 Then img.src="img1.gif"
timer = 0
Loop
Is anything like this possible? Are there any examples of this anywhere? As you may tell I'm very new to php and am finding my intermediate VB skills aren't very useful at all 🙂
Thanks a lot!