Default Would this be a good use for a MYSQL Database?

cgl102770

New Member
Would this be a good use for a MYSQL Database?

I have a client who wants to have a login on their site for customers. Once logged in, each customer would see their own personal order form with pricing unique to them. I know how to create the order forms, those are just html pages. But I need something that allows me to create customers with their own login and password, and the login id directs them to their order form. Thank you for any suggestions!
 
Last edited:

smoovo

New Member
Sure, it has to work with DB, and MySQL is the best ;).

The user will prompt to log in, once he submit his information it been checked with the DB users table. If it fails, he will get error message. If it works, the page will generate the tables from the DB accordingly to the username provided.

- Enjoy.
 

Kelly

New Member
Yes. According to your scenario you should use a database as a back end data storage. What I suggest is if you can code your login form page with PHP its better to contact with a database.
 
Top