<?php
return;
//This file is for testing purposes & credentials are stored outside of this repo because security. Duh! :P
include(__DIR__.'/class/Arrays.php');
include(__DIR__.'/class/PDO.php');
$credentials = include(__DIR__.'/../../private/pdo_credentials.php');
$pdo = new \RBear\PDO(['db'=>'mtg','user'=>$credentials['user'],'password'=>$credentials['password']],FALSE);
$cards = $pdo->fetchAll("SELECT * FROM card LIMIT 0, 10");
print_r($cards);