Folder reorganize 1
This commit is contained in:
29
OLD/charts/config.php
Normal file
29
OLD/charts/config.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
// In this page, we open the connection to the Database
|
||||
// In this page, we open the connection to the Database
|
||||
// Our MySQL database (blueprintdb) for the Blueprint Application
|
||||
// Function to connect to the DB
|
||||
// Now you can pass the database name to the function
|
||||
function connectToDB( $dbName="" ) {
|
||||
// These four parameters must be changed dependent on your MySQL settings
|
||||
$hostdb = '192.168.0.10'; // MySQl host
|
||||
$userdb = 'corey'; // MySQL username
|
||||
$passdb = '41945549'; // MySQL password
|
||||
$namedb = $dbName ? $dbName : 'controls'; // MySQL database name
|
||||
|
||||
$link = mysqli_connect ($hostdb, $userdb, $passdb, $namedb);
|
||||
|
||||
/*if (!$link) {
|
||||
// we should have connected, but if any of the above parameters
|
||||
// are incorrect or we can't access the DB for some reason,
|
||||
// then we will stop execution here
|
||||
die('Could not connect: ' . mysql_error());
|
||||
}
|
||||
|
||||
$db_selected = mysql_select_db($namedb);
|
||||
if (!$db_selected) {
|
||||
die ('Can\'t use database : ' . mysql_error());
|
||||
}*/
|
||||
return $link;
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user