How can the issue of starting the guestbook entries on page 0 be resolved to display the first page correctly as page 1?

The issue of starting the guestbook entries on page 0 can be resolved by incrementing the page number by 1 before displaying it to the user. This way, the first page will be correctly displayed as page 1.

// Increment the page number by 1 to start from page 1
$page = isset($_GET['page']) ? $_GET['page'] + 1 : 1;

// Display the correct page number to the user
echo "Page " . $page;