Connection file to the API
<?php | |
$con = mysqli_connect("localhost", "root", "", "api"); | |
if($con) { | |
// echo "Connection Established"; | |
} else { | |
die(); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment