Skip to content

Instantly share code, notes, and snippets.

View sabaelhilo's full-sized avatar

Saba El-Hilo sabaelhilo

  • Revelstoke, BC, Canada
View GitHub Profile
<?php
include('DataLogin.php');
$data_login = new DataLogin();
$connection = $data_login->getConnection();
// stop the application if we can't connect
if (!$connection) {
echo '<div class="error-message">Could not connect to Database</div>';
die();
}