Log in

View Full Version : I don't know the name..



louie1
07-09-2009, 01:47 AM
Ok, I need a script to place text on front page of website. I need to constantly replace the text BUT I do not wish to create a new page every time I replace content. I need a script where I can include all the content I want and when content gets replaced, the script will automatically move the old content over as page 1, page 2, and so forth. Something like a photoscript but for text and without having to preprogram several pages. Is there something like that? Thanks

louie1
07-10-2009, 01:28 AM
anyone?????

Beverleyh
07-15-2009, 12:40 PM
Maybe you need some sort of news management script.

These are examples:
http://www.fusionnews.net/index.php
http://www.interlogy.com/products/content/article/index.html

They auto-paginate.

joewpie
07-15-2009, 03:30 PM
Use a database with a unique ID column and a CONTENT column. In the content column you put the content of every page, and then make an sql query that always selects the newest page (by ordering by ID desc LIMIT 1), then use a simple pagination code to make links to the following pages.