I've got an array of a bunch of html pages. What I'd like to do is to create "Next" and "Previous" links for each of these htmls. Therefore, for the first html in the array, I'd like to be able to grab the second html in the array and put that value into the "Next" href of the first html. For the second html, I'd like to grab the first html in the array for the Previous link, and the third html in the array for the Next link, and so on and so on, until I reach the last html, in which case I'll only need to create a Previous link.
Is this do-able?
Is this do-able?
Comment