Created
March 26, 2015 16:15
-
-
Save hawksprite/c89306c1ae637f9981cf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Connect to DB | |
$hostName = "localhost"; | |
$userName = "root"; | |
$password = "#"; | |
$dbName = "class"; | |
$link = mysqli_connect($hostName, $userName, $password, $dbName) or die ("Error" . mysqli_error($link)); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment