MySQL replication is a process in which a set of data from a single mysql server is being copied live on another mysql servers. Most popular setup of mysql replication is what they call Master-Slave Setup. This setup will just…
All posts tagged “mysql”
How to prevent SQL-injection on PHP/MySQL?
This is a very old vulnerability, but it surprises me how many developer doesn’t know it exists or doesn’t even bother coding to prevent it. How does SQL-injection work? SQL injection is simply just SQL statement not properly formated. The…