Skip to content

Instantly share code, notes, and snippets.

View zutigrm's full-sized avatar

Aleksej Vukomanovic zutigrm

View GitHub Profile
@peterentwistle
peterentwistle / dbConnect.php
Last active December 17, 2015 03:49
The code for the second part of the basic PHP login tutorial.
<?php
$dbCon = mysqli_connect("localhost", "root", "yourpasshere", "tutorials");
?>