time delay function<

admin

Administrator
Staff member
Hi I am thinking of putting a gallery on my website and i would like to have a slide show option where the images change after a period of time.

psudo code something like this

image_num = 0

while images_num < total_images+1 loop
display_image(image_num)
wait some time
image_num= image_num +1
end loop


so i was just wondering if there is a function for the
"wait some time line"

cheersnot with serverisde code you won't.

you need to do this with javascript as that will keep time after the page has already loaded. server side code stops running after the page us fully loaded.
 
Back
Top