Created
September 20, 2016 21:47
-
-
Save bellaajhabib/1c874cb9f7337296cbe7e017b6137431 to your computer and use it in GitHub Desktop.
PDO Connextion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Database | |
{ | |
private $host = 'localhost'; | |
private $user = 'root'; | |
private $pass = ''; | |
private $dbname = 'myblog'; | |
private $dbh; | |
private $error; | |
private $stmt; | |
public function __construct() | |
{ | |
//Set DSN | |
$dns = 'mysql:host=' . $this->host . ';dbname=' . $this->dbname; | |
//Set Options | |
$options = array( | |
PDO::ATTR_PERSISTENT => true, | |
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION | |
); | |
//Create new PDO | |
try { | |
$this->dbh = new PDO($dns, $this->user, $this->pass, $options); | |
} catch (PDOException $e) { | |
$this->error = $e->getMessage(); | |
} | |
} | |
public function query($query) | |
{ | |
$this->stmt = $this->dbh->prepare($query); | |
} | |
public function bind($param, $value, $type = null) | |
{ | |
if (is_null($type)) { | |
switch (true) { | |
case is_int($value): | |
$type = PDO::PARAM_INT; | |
break; | |
case is_bool($value): | |
$type = PDO::PARAM_BOOL; | |
break; | |
case is_null($value): | |
$type = PDO::PARAM_NULL; | |
break; | |
default: | |
$type = PDO::PARAM_STR; | |
} | |
} | |
$this->stmt->binValue($param, $value, $type); | |
} | |
public function execute() | |
{ | |
$this->stmt->execute(); | |
} | |
public function resultset() | |
{ | |
$this->execute(); | |
return $this->stmt->fetchAll(PDO::FETCH_ASSOC); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: habib | |
* Date: 9/19/2016 | |
* Time: 10:47 PM | |
*/ | |
spl_autoload_register(function ($class_name){ | |
include $class_name.".php"; | |
}); | |
$database= new Database(); | |
$database->query('SELECT * FROM posts'); | |
$rows=$database->resultset(); | |
echo '<pre>'; | |
print_r($rows); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment