What you need to do can be summarised into the following points:
1) Create a connection to a mysql db
2) Pull Stuff out of the database
3) Put stuff into the database
Get each one sorted and then put it all together ...
Main thing is don't for get to clean up your input with mysql_real_escape_string() so that no one can do sql injections on your input fields. ... |