Skip to content

Instantly share code, notes, and snippets.

@Lif3line
Last active August 29, 2015 14:01
Show Gist options
  • Save Lif3line/4f83f701ca174ebc1788 to your computer and use it in GitHub Desktop.
Save Lif3line/4f83f701ca174ebc1788 to your computer and use it in GitHub Desktop.
Simple connection script to be included for dealing with MySQL databases
<?php
$db_host = '';
$db_username = '';
$db_pass = '';
$db_name = '';
@mysql_connect("$db_host","$db_username","$db_pass") or die ("Could not connect to mysql");
@mysql_select_db("$db_name") or die ("Database not found");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment