Skip to content

Instantly share code, notes, and snippets.

@cloudwales
Created March 1, 2017 16:16
Show Gist options
  • Save cloudwales/33fe0bc73543c72a037e512688d9ded1 to your computer and use it in GitHub Desktop.
Save cloudwales/33fe0bc73543c72a037e512688d9ded1 to your computer and use it in GitHub Desktop.
Top of Database.php
<?php
$url = parse_url(getenv("CLEARDB_DATABASE_URL"));
$host = $url["host"];
$username = $url["user"];
$password = $url["pass"];
$database = substr($url["path"], 1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment