PDA

View Full Version : Forms trouble (php)


DrewM
12-14-2005, 09:39 AM
Can anyone tell me how to make a form that makes it when you summit the form info will display on a page to every body instead of just to the one person?

Andrew
12-14-2005, 10:44 AM
You'll need to store the information in a database or a flat file, and then create a page that lists all of the submissions. Have you ever worked with PHP and MySQL before ? If not I would really recommend you read a couple of tutorials to get aquainted with it.

kobescoresagain
12-14-2005, 05:38 PM
Andrew, well stated, you would need to make a page using php, that has a form that brings in the information, the php page would then store that information into the database. You then would have to make a page that pulls that information from the database and displays it back onto the page.

DrewM
12-14-2005, 06:59 PM
thank you