File "dbcon.php"

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

Download   Open   Edit   Advanced Editor   Back

<?php



    $host = "localhost";
/* 
    $username = "bdemarke_cus";

    $password = "uJQfdAJ20PSq";

    $database = "bdemarke_coredb";
 */
    $username = "fsibplc_nu24";

    $password = "6pc#4efg1hNn@0vZ";

    $database = "fsibplc_fsib24";

 

    $con = mysqli_connect("$host", "$username", "$password", "$database");
    $conn = $con; 


    if(!$con && !$conn)

    {


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

        die();



    }

 

  



?>