Hello,
I'm afraid you really did no research on this topic, as PHP+MySQL is the most popular stack for web applications. Assuming you know how to get data from a form, you do the following:
mysql_connect('server', 'userName', 'password');
mysql_select_db('dbname');
to insert data:
mysql_query("insert into tableName(field1, field2, ...) values('$value1', '$value2', ...)");
to update data:
mysql_query("update tableName set field1='$value1', field2='$value2', ... where primaryKey=$rowId");
I also assume that you know the relational model of your data. $valueXX should be escaped before going into database.
__________________
onPHP5.com -
PHP5: Articles, News, Tutorials, Interviews, Software and more