When I do pagination for my comments my numbering for my comments starts over on the next page how can I fix this so my count of the comments wont start over for my comments? When I leave out pagination my numbering of my comments works fine. Im using PHP & MySQL.
My counting for my comments is simple
$comment_num = 1; //number comments posted
How I display the numbered comment.
echo '<div>' . $comment_num++ . '</div>';
Display output without pagination.
Comment 1
Comment 2
Comment 3
Comment 4
Comment 5
Comment 6
Display count with pagination set to display 2 comments at a time.
Comment 1
Comment 2
Next pagination page with different comments.
Comment 1
Comment 2