Skip to content

Instantly share code, notes, and snippets.

@Petah
Created June 3, 2018 12:21
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 Petah/eab337786bf5421220d4fcdfc56b757c to your computer and use it in GitHub Desktop.
Save Petah/eab337786bf5421220d4fcdfc56b757c to your computer and use it in GitHub Desktop.
basic php
<?php
$pdo = new PDO('mysql:host=localhost;dbname=test', 'dbuser', 'dbpassword');
<?php
require_once __DIR__ . '/database.php';
?>
<html>
do some html things
<?php
foreach($pdo->query('SELECT * FROM mytable') as $row) {
print_r($row);
}
?>
</html>
<?php
require_once __DIR__ . '/database.php';
?>
<html>
do some html things
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment