Hi folks,
I have a fast growing guestbook and intend to save resources creating static plain html .
Actually my script is reading the database and spliting it in several pages containing 8 entries each one with the proper links for navigation (1, 2, 3, 4 ... n)
I can't figure out how to save that pages in just one step, from 1 to n.
By the way, all submited new entries goes to another database for my aproval, so no need to run the script that will generate the static pages at every single submtion.
Here is the database $banco:
($name, $email, $div, $opina, $ip, $city, $message, $top) = split(/\>\>/ , $banco);
Thaks for any help
I have a fast growing guestbook and intend to save resources creating static plain html .
Actually my script is reading the database and spliting it in several pages containing 8 entries each one with the proper links for navigation (1, 2, 3, 4 ... n)
I can't figure out how to save that pages in just one step, from 1 to n.
By the way, all submited new entries goes to another database for my aproval, so no need to run the script that will generate the static pages at every single submtion.
Here is the database $banco:
($name, $email, $div, $opina, $ip, $city, $message, $top) = split(/\>\>/ , $banco);
Thaks for any help