Okay, so I have an array named with three values:
$tutorials = array('introduction', 'get_started', 'basics')
I also have a link for example:
mysite.com/?tutorials=get_started
So the link above appears to be the first value of $tutorials but what if I want my anchor's href to be like the next value?
<a href="?tutorials=basics">Next</a>
Are there any shortcuts for this? Because my array is not just only 3 but 20 and I don't want to edit them one by one.
What I'm trying to do here is a Next and Previous links. Please help.
Thank you!