i have a form:
mood: |TEXTBOX|
music: |TEXTBOX|
entry: |TEXT | |AREA |
SUBMIT BUTTON
when i input data into the form i want it to be displayed on a page in tables. kinda like a tag board. i am a bit of a newbie with this stuff can any1 help, thanx in advance
You will need a database eg. MySQL, or a flat text file, check out Zend.com for tutorials.
regards Thomas
Have all of your data go into a MySQL database, as thoand said. Then use PHP to read the database and output a table for each record. The following links should help you:
http://us2.php.net/manual/en/ref.mysql.php
http://www.mysql.com/documentation/mysql/bychapter/index.html
If you dont want to save the input from the form then you dont need a database or a text file. Just use 'PHP_SELF' to send the data back and use a IF statement to check if the submit buton was pressed.