Skip to content

Instantly share code, notes, and snippets.

@Kingo4luv
Created February 23, 2018 21:51
Show Gist options
  • Save Kingo4luv/a292771e3bf6184ab95054ea6b76fa19 to your computer and use it in GitHub Desktop.
Save Kingo4luv/a292771e3bf6184ab95054ea6b76fa19 to your computer and use it in GitHub Desktop.
Database Connection script
<?php
$link = mysqli_connect("localhost", "root", "", "training");
// Check connection
if($link === false){
die("ERROR: Could not connect. " . mysqli_connect_error());
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment