Release Template files
This commit is contained in:
28
version/proserve-ReleaseTemplate/_api/config/database.php
Normal file
28
version/proserve-ReleaseTemplate/_api/config/database.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
class Database
|
||||
{
|
||||
// specify your own database credentials
|
||||
private $host = "localhost"; //Server
|
||||
private $db_name = "ProserveAPI"; //Database Name
|
||||
private $username = "root"; //UserName of Phpmyadmin
|
||||
private $password = ""; //Password associated with username
|
||||
public $conn;
|
||||
|
||||
// get the database connection
|
||||
public function getConnection()
|
||||
{
|
||||
$this->conn = null;
|
||||
try
|
||||
{
|
||||
$this->conn = new PDO("mysql:host=" . $this->host . ";dbname=" . $this->db_name, $this->username, $this->password);
|
||||
$this->conn->exec("set names utf8");
|
||||
}
|
||||
catch(PDOException $exception)
|
||||
{
|
||||
echo "Connection error: " . $exception->getMessage();
|
||||
}
|
||||
|
||||
return $this->conn;
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user