Skip to content

Instantly share code, notes, and snippets.

@hawksprite
Created March 26, 2015 16:15
Show Gist options
  • Save hawksprite/c89306c1ae637f9981cf to your computer and use it in GitHub Desktop.
Save hawksprite/c89306c1ae637f9981cf to your computer and use it in GitHub Desktop.
<?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