Skip to content

Instantly share code, notes, and snippets.

@bikashthapa01
Last active April 20, 2022 13:21
Show Gist options
  • Save bikashthapa01/c77ce160952f4b55696b7a57ee11fa9f to your computer and use it in GitHub Desktop.
Save bikashthapa01/c77ce160952f4b55696b7a57ee11fa9f to your computer and use it in GitHub Desktop.
Database Connection in Php
<?php
$server= "localhost:3325";
$username= "root";
$password = "";
$connection = new mysqli($server,$username,$password);
if($connection->connect_error){
echo "Database Not Connected.";
}else{
echo "Database Connected.";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment