Jump to content

[SOLVED] foreach pagination


Canman2005

Recommended Posts

Hi all

 

I have a couple of questions based on

 

foreach ($rss->items as $item)
{
}

 

if you're able to help.

 

1: Is it possible to define a variable that will give me a total number of results in the foreach statement?

 

2: Is it possible to archive a page numbering system with foreach?

 

Thanks everyone

 

Dave

Link to comment
https://forums.phpfreaks.com/topic/162382-solved-foreach-pagination/
Share on other sites

1: Is it possible to define a variable that will give me a total number of results in the foreach statement?

 

You mean, like start a counter and increment it each time it runs?

 

$counter = 0;
foreach ($rss->items as $item)
{
$counter++;
}

 

2: Is it possible to archive a page numbering system with foreach?

 

Sorry?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.