:: **Zploit** v1.0 | Current Path: **/home/kreativepixelz/www/demo/jdc_studio/admin/**
:: Editing File: db.php
<?php // Define database credentials define('DB_SERVER', 'localhost'); define('DB_USERNAME', 'kreativepixelz_jdcstudio'); // REPLACE with your MySQL username define('DB_PASSWORD', 'kreativepixelz_jdcstudio'); // REPLACE with your MySQL password define('DB_NAME', 'kreativepixelz_jdcstudio'); // REPLACE with your database name // Attempt to connect to MySQL database $conn = mysqli_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD, DB_NAME); // Check connection if ($conn === false) { die("ERROR: Could not connect to the database. " . mysqli_connect_error()); } ?>