File "dbcon.php"

Full path: /home/fsibplc/public_html/fsib/firstcash/admin/config/dbcon.php
File size: 380 B (380 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

    $host = "fsibplc.com";
    $username = "fsibplc_zsrs";
    $password = "UC3pu*MWLeGDq!45";
    $database = "fsibplc_dbdf";
     // $database = "fsibplc_firstC";
 
    $con = mysqli_connect("$host", "$username", "$password", "$database");


    if(!$con)
    {

        header("Location: ../admin/errors/dberror.php");
        die();

    }
 
  

?>