Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeLaScala committed Feb 7, 2017
0 parents commit a282e6f
Show file tree
Hide file tree
Showing 100 changed files with 29,842 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.*
!/.gitignore
12 changes: 12 additions & 0 deletions models/db_connection.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
/**
* Created by PhpStorm.
* User: luklas
* Date: 7/31/16
* Time: 10:15 PM
*/
$user = 'ctflearn';
$pass = 'ctflearn';

$dbh = new PDO('mysql:host=localhost;dbname=ctflearn', $user, $pass);
?>
Loading

0 comments on commit a282e6f

Please sign in to comment.