XML limit results, more button

wings

New Member
I've managed to limit my XML results using the code below. The amount of results shown is set to 20.Is there a way of putting a more button in to add another 20 results?\[code\]$i = 0;foreach ($sxml->status as $status) { if (++$i > 5) { break; }}\[/code\]
 
Back
Top