Just wondering, is there a function that emulates the MoveNext and MoveFirst commands from ASP in PHP? If there is none can anyone point me in a right direction as well as some examples?
Many thanks,
Emmanuel Okorie
MoveNext, MoveFirst function in PHP?
Moderator: General Moderators
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
Yes, there is.
Don't know if I got exactly the thing you wanted, but try this:
MoveFirst =>
MoveNext =>
MoveFirst =>
Code: Select all
reset($YourArray);Code: Select all
next($YourArray);