Im trying to build a little site using XML instead of a database.
I would like to build a next and prev button which will work relative to the content I have displayed.
I found the php function next() and prev() as well as current() but I do not know how to set the pointer to a specific position to be able to navigate relative to the current page.
$list=array('page1','page2','page3')
eg if im displaying contents of page2 how could I tell php i am at $list[1] so that next($list) shows page3?
Thanks in advance
If your array is always indexed consistently (eg. ‘page1’ is always at index ‘0’), it’s fairly simple:
I personally don’t rely on automatic indexing because there’s always a chance that the automatic index might change. You should consider explicitly defining the keys:
EDIT: If you want to test the values of the array (instead of the keys), use
current():