How can I have a user fill out a form and post that info to MySQL plus email that info to me at the same time. I have the form to post to MySQL I just don't understand how to email this as well.
after you run a mysql query which inserts the user inputs into a database, build the mail strings: headers, message bodies , mail address and run a mail function.
You can see examples how to send a mail in the php manual: mail()