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