I am trying to create a very simple gallery of 1400 images I have. All I want to do is display the default image 0001.jpg and have NEXT and PREV links.
For the Next button I want it to +1 to the current number so if its "0001" and you click NEXT I want it to show "0002" all the way to 1400.
Example of link: "gallery.php?show=0001.jpg"
code of image: <img src="wedding/wedding-<? echo $picture; ?>.jpg" />
I know how I can do this to make the number go from 1 to 2 but im lost on how to make the number go up with a format of 4 digits. So 0001 0002 0003 ....0010 0011/...1399 1400 etc
Appreciate any help