Skip to content

Instantly share code, notes, and snippets.

@pgrimaud
Last active March 20, 2023 15:25
Show Gist options
  • Save pgrimaud/9cf31d36806f6184fef6756d0dac7c04 to your computer and use it in GitHub Desktop.
Save pgrimaud/9cf31d36806f6184fef6756d0dac7c04 to your computer and use it in GitHub Desktop.
Test file PDO
<?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