Skip to content

Instantly share code, notes, and snippets.

@fabriziomachado
Created March 16, 2015 20:44
Show Gist options
  • Save fabriziomachado/7663044f51109f21e224 to your computer and use it in GitHub Desktop.
Save fabriziomachado/7663044f51109f21e224 to your computer and use it in GitHub Desktop.
teste de conexão com PDO/Mysql
<?php
$dbh=new PDO("mysql:dbname=onlinemarket;host=172.17.0.32", "root", "root");
foreach($dbh->query('SELECT * from listings') as $row)
{
print_r($row);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment