Search code examples
phpmysqlconnectivity

PHP disconnected and mysql connection


I have a MySQL query in PHP that deletes multiple row from different tables. I would like to know if when my browser is waiting for the MySQL query to finish if I lost my internet connection will the MySQL query still work on server or will it stop as soon as I lost my connection.


Solution

  • The server side will not be affected, if a client loose his connection. The request will be excecuted, but the client will not get the result.