Skip to content

Instantly share code, notes, and snippets.

@pgrimaud
Created January 6, 2019 18:50
Show Gist options
  • Save pgrimaud/d7fd3039c0b384368f3d5f79cf07aea0 to your computer and use it in GitHub Desktop.
Save pgrimaud/d7fd3039c0b384368f3d5f79cf07aea0 to your computer and use it in GitHub Desktop.
pdo.php
<?php
$pdo = new PDO('mysql:host=iim_mysql', 'root', 'root');
$databases = $pdo->query('SHOW DATABASES')->fetch(PDO::FETCH_ASSOC);
print_r($databases);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment