Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zerocarbthirty/6f22c829b47b3e5e8394a1218d9e4b44 to your computer and use it in GitHub Desktop.
Save zerocarbthirty/6f22c829b47b3e5e8394a1218d9e4b44 to your computer and use it in GitHub Desktop.
function greeting() {
$mysql_host = "...";
$mysql_user = "...";
$mysql_pass = "...";
$connect = mysqli_connect("$mysql_host", "$mysql_user", "$mysql_pass");
$string = "Greetings nerd...";
return($string);
}
$greeting = greeting();
var_dump($connect);
NULL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment