Skip to content
Advertisement

How to increase/decrease the number in $_GET variable link?

I have a PHP page that utilizes a $_GET variable, “link”, to display a specific image on the page. My PHP page URLs look like “website.com/page.php?link=1”

PHP Code:

JavaScript

HTML

JavaScript

I want to add ‘Next’ and ‘Previous’ buttons on this page, which will go to the next/previous $link URL when clicked.

JavaScript

What should I put as the href in order to achieve this? Basically, I want it to be “$link -1” for previous and “$link +1” for next.

Thanks in advance for the help!

Advertisement

Answer

Assuming your images will always be image1.jpg, image2.jpg, image3.jpg etc, you can achieve what you’re looking for like this:

Note: I used PHP only just so it’s easier to follow the logic

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement