Answers for "how to quit mysql server"

PHP
3

how to close mysql connection

// Creating connection
$conn = mysqli_connect("localhost", "username", "password");
// closing connection
mysqli_close($conn);
Posted by: Guest on July-03-2021
1

quit mysql

To exit from mysql type quit at the mysql> command-prompt
Posted by: Guest on August-04-2020

Browse Popular Code Answers by Language