Got a problem that seems so lame, but I cannot fathom how to fix it.
I have a page that displays people's names, and by each name it counts up by 1.
ie.
1 Fred
2 Joe
3 Sally.
But the page produces a few hundreds, so I have page numbering, and when you go to Page 2 (or over), it restarts at one.
This is the simple code I use for the 1, 2, 3....
Code: Select all
$start = $start + 1;
echo "$start";