File "t.php"

Full path: /home/fsibplc/public_html/fsib/t.php
File size: 375 B (375 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php
$servername = "localhost";
$username = "fsibplc_soft_team";
$password = "Fsib@Soft@Team";
$dbname = "fsibplc_account_opening";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";

$conn->close();
?>