i get an error like " unscaped t string on line 1 at (-10,10)"
i found the second part is a math function for the guestbook pages.
so i assume something is wrong with the way its setup in the SQL statement.
if anyone can point this out id appreciate it.
$query = "SELECT id, name, email, url, message, DATE_FORMAT(entry_date, '%d.%m.%Y') ".
"FROM guestbook ".
"ORDER BY id DESC ". // using ORDER BY to show the most current entry first
"LIMIT $offset, $rowsPerPage"; // LIMIT is the core of paging