Is it possible to connecting a remote mysql server and auto update another database in the same time?
For example my database:
Database one: user id user name pass
When adding or updating user in database two, user name in database one updates.
How can I do this if possible?
Thanks in advance
Automating this inside mySQL may be possible using triggers but that is complex and requires mySQL 5.
Wouldn’t it be an option to do the logic in PHP? Adding a query to update database B whenever database A is updated?