|
|
GetTableList
The GetTableList() function serves to obtain the name of tables of your database. |
<?php
include("TPLN/TPLN.php");
$TPLN = new TPLN;
$TPLN->DbConnect();
$tables = $TPLN->GetTableList();
for($i=0;$i<count($tables);$i++)
{
echo "Table {$tables[$i]}<br>";
}
$TPLN->DbClose();
?>
|
|