Sample> Db Functions

<?php

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

$TPLN = new TPLN;


$TPLN->dbConnect();
$TPLN->doQuery('SELECT * FROM Country ORDER BY RAND() LIMIT 5');

$count $TPLN->dbNumRows(); // nuber of records
$res $TPLN->getData(); // all data

$TPLN->dump('DB count'$count);
$TPLN->dump('DB result'$res);

$TPLN->DbClose();


?>
No template for this sample