Sample> Db Share Connection

<?php

// include TPLN
include('TPLN/TPLN.php');

$TPLN = new TPLN;
$TPLN->dbConnect();

// use this method to share connection object, useful with framework
$dbx $TPLN->dbGetConnectionObject();

// normal pdo use
echo "Switch pdo connection with normal function<br>";
$req $dbx->query("SELECT * FROM City") or die(print_r($dbx->errorInfo(), true));

// close connection
$dbx null;
echo 
"Close pdo connection<br>";







?>
no template