10
Questions about making a website login
(programming.dev)
Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development
Web development is the process of creating websites or web applications
Some webdev blogs
Not sure what to post in here? Want some web development related things to read?
Heres a couple blogs that have web development related content
Yeah, database name and tables are different things.
You probably want something like
Where
YourUser@ClientHostname
is the user you want to grant the access. You need to create it separately.The ClientHostname part is a way to restrict the source of login. For example, you may only want web servers to be able to log in using that user/password, as a security measure. So if the database ends up accidentally exposed to the Internet, the credentials won't match the host part and be denied. You can use
%
to allow everything.