Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created Connection.php #66

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions class.DBPDO.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ function prep_query($query){
function connect(){
if(!$this->pdo){

$dsn = 'mysql:dbname=' . DATABASE_NAME . ';host=' . DATABASE_HOST.';charset=utf8';
$user = DATABASE_USER;
$password = DATABASE_PASS;
include('connection.php');

try {
$this->pdo = new PDO($dsn, $user, $password, array(PDO::ATTR_PERSISTENT => true));
Expand Down
10 changes: 10 additions & 0 deletions connection.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
$dsn = 'mysql:dbname=' . DATABASE_NAME . ';host=' . DATABASE_HOST.';charset=utf8';
$user = DATABASE_USER;
$password = DATABASE_PASS;

/*You this line to make code simple :

include('connection.php');

This will help in reading and understanding code easily
*/