This simple PHP code will quickly give the list of all the drivers that are available for you:
[lang=”php”]
foreach( PDO::getAvailableDrivers() as $driver)
{
echo $driver . ‘
‘;
}
?>
[/lang]
$blog->aim(' A general titillation around the PHP ecosystem ');
This simple PHP code will quickly give the list of all the drivers that are available for you:
[lang=”php”]
foreach( PDO::getAvailableDrivers() as $driver)
{
echo $driver . ‘
‘;
}
?>
[/lang]