How can i Have php post to self with mysql?
Mysql is an Database where Data from HTML forms will be inserted
to it by some scripts like ASP 3 (classic), ASP.NET, PHP,
ColdFusion and...
What you need is a form (By HTML), an Database and table in
Mysql and PHP to insert data from your form to the table.
mysql insert command is:
INSERT INTO table_name_here (column1, column2, ..) VALUES
(value_of_column_1, value_of_column_2, ...)