Hi everyone,
For my company, I need to create a PHP site which does the following:
- Allow a user to enter warranty information in a form (ex. part number, cost, make, etc.)
- E-Mail the form to a person
- Store the form information in a MySQL database
- Allow people to view the form information contained in the database
My PHP is a little rusty, so I'm just wondering how I would do this. I assume I create a regular PHP form, and then somehow store the forms in a MySQL database.
My question is how do I store this information in the database, and create a web frontend for people to view the entered information? I know how to send the e-mail, thats no problem, its just the MySQL part that is getting me confused.
Thanks!