Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 12, 2018 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/499b8ce9eeab028e668e34d0a02b32f0 to your computer and use it in GitHub Desktop.
Save parzibyte/499b8ce9eeab028e668e34d0a02b32f0 to your computer and use it in GitHub Desktop.
<?php
include_once "base_de_datos.php";
$sentencia = $base_de_datos->query("SELECT * FROM personas;");
$personas = $sentencia->fetchAll(PDO::FETCH_OBJ);
print_r($personas);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment