Skip to content

Instantly share code, notes, and snippets.

@Tridence
Forked from SMacEwan/gist:3746653
Created April 7, 2021 15:54
Show Gist options
  • Save Tridence/7f9111c546386c28e1f81966fb2352c0 to your computer and use it in GitHub Desktop.
Save Tridence/7f9111c546386c28e1f81966fb2352c0 to your computer and use it in GitHub Desktop.
PHP Database connection template
<?php
//Replace ALL the things!
$hostname = 'localhost';
$database = 'testdb';
$username = 'root';
$password = 'root';
$dbh = new PDO('mysql:host=' . $hostname . ';dbname=' . $database, $username, $password);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment