Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Ich würde dir raten hier auf zwei Benutzer zu setzen.
GRANT SELECT ON database.* TO username@'localhost' IDENTIFIED BY 'password';
GRANT SELECT, INSERT, UPDATE ON database.* TO username@'<eine-remote-adresse>' IDENTIFIED BY 'password';
http://dev.mysql.com/doc/refman/5.0/en/grant.html#grant-accounts-passwordsTo accommodate granting rights to users from arbitrary hosts, MySQL supports specifying the user value in the form user_name@host_name.
[...]
You can specify wildcards in the host name. For example, user_name@'%.example.com' applies to user_name for any host in the example.com domain, and user_name@'192.168.1.%' applies to user_name for any host in the 192.168.1 class C subnet.
The simple form user_name is a synonym for user_name@'%'.
http://dev.mysql.com/doc/refman/5.0/en/grant.html#grant-mysql-vs-standard-sqlThe biggest differences between the MySQL and standard SQL versions of GRANT are:
MySQL associates privileges with the combination of a host name and user name and not with only a user name.
[...]