Authorization is done as follows.
Go to a MySQL terminal and execute the following command.
Format: grant permissions on database name. table name to user@loginhost identified by "user password".
USE mysql;
GRANT ALL PRIVILEGES ON *. * TO 'youeruser'@'%' IDENTIFIED BY 'password'.
Note the security.