how is it possible to make something like this:
Admin Creates accounts with specific username and password
then from the website the user logs in to his account and views personal account data the admin uploaded to his account.
For instance there is a client who has bought something.Then he logs in to his site account and views what he bought last week (in fact browsing specific server data)
How can that be done?With a simple script?A cms or what?
Thanks for any help!
The best answer is in google 🙂
Really try to search a little in google something like “user management with php” and probably you can find a huge quantity of answer.
Btw i think that to do a basic user management with php you need:
Username, email, password (be sure that the password is crypted for example with md5) and the user role (admin, editor, etc).
These are the basic steps to manage users (probably many information are missing). But this is good if you want to learn something, but if you want something strong and probably more secure you can think to use a CMS and maybe only create some customization of it if needed.