How to open MySQL database and view a table with PHP Data Objects (PDO) in PHP

1 Answer

0 votes
$db = new PDO("mysql:host=localhost;dbname=database_name", "username", "password");

$sql = $db->prepare("SELECT * FROM a_table");
$sql->execute();

while ($row = $sql->fetch()) 
    print_r($row);
    
$sql = null;


answered Apr 22, 2014 by avibootz
edited May 20, 2015 by avibootz
...