Skip to content

Instantly share code, notes, and snippets.

@Bolinha1
Created November 8, 2014 17:02
Show Gist options
  • Save Bolinha1/7e5a8cae5a0a0fb9d5fb to your computer and use it in GitHub Desktop.
Save Bolinha1/7e5a8cae5a0a0fb9d5fb to your computer and use it in GitHub Desktop.
<?php
include __DIR__.'/../Config/Connection.php';
function getAll()
{
$pdo = connection();
$stmt = $pdo->prepare('SELECT * FROM tb_test');
$stmt->execute();
return $stmt->fetchAll(PDO::FETCH_OBJ);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment