Here is my plan to create a highly dynamic website with user login/registration and editable profile with pictures:
1.I'll setup only 1 MySQL database for collecting users registration forms and also the same db for login. Pictures will also be stored in this db(like profile pics, or else).
2.A flash login form will check only email and password of the db to check whether the user is valid.
3.A php processes data and if returned true it'll start a new session for that user and will be redirected to the profile page and the rest of the information of that user is then retrieved from db and fills different fields inside that page.
Q1:What is the best collation i should use for username and pass inside MySQL db? Q2:This is the first time i'm doing this, just wanna make sure that i'm the track and is there any tips or suggestions, something that will guide through?
Your answers are appreciated.