Connect to MySQL Server
class DatabaseConnector {
private $conn = null;
public function __construct() {
$server_name = ""; // host name
$database = ""; // the database name
$username = "";
$password = "";
try {
$conn = new PDO('mysql:host=localhost;dbname=' . $database, $username, $password);
$conn -> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$conn -> setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
$this -> setConnection($conn);
} catch(PDOException $e) {
echo "Connection failed: " . $e -> getMessage();
}
}
/**
* Sets the database connection.
*/
public function setConnection($conn) {
$this -> conn = $conn;
}
/**
* Gets the database connection.
*/
public function getConnection() {
return $this -> conn;
}
/**
* Sets the connection to null.
*/
public function closeConnection() {
$this -> conn = null;
}
}