Posts: 1,832
Location: Somewhere else entirely
|
You need some way of storing the information you submit. A database is one way of doing this, and once it is set up it is the most flexible. You can acheive the same effect using flat files - this means that the PHP script that receives your data creates a text file and stores the data in it (or it might append it to the end of one big file that stores it all). Then the display script opens the file and picks out the bits it wants to display. This does not require a database, but you have to write the code to insert stuff and search for what to display.
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Please login or register to view this content. Registration is FREE (aka MSN handwriting for forums)
|