Single post

Your web site should be built around your "vision" and your "business requirements"

MYSQL Create new user and Grant privileges

To Create a new user in mysql
CREATE USER ‘UserName’@’localhost’ IDENTIFIED BY ‘Password’;

To Grant user access to the Database
GRANT ALL PRIVILEGES ON DatabaseName . * TO ‘UserName’@’localhost’;

After that Flush the privileges so the changes will take affect.
FLUSH PRIVILEGES;