Init Commit
This commit is contained in:
15
connectDB.php
Normal file
15
connectDB.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
$servername = "localhost";
|
||||
$username = "cvsys";
|
||||
$password = "kSD2Af2MrpPXPnAe";
|
||||
$db = "cvsys";
|
||||
|
||||
// Create connection
|
||||
$conn = new mysqli($servername, $username, $password, $db);
|
||||
|
||||
// Check connection
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
//echo "Connected successfully";
|
||||
?>
|
||||
Reference in New Issue
Block a user