Database Configuration
to change configuration please see includes/config.php file
you must edit this data with your own data.
//database configuration
$host = "localhost";
$user = "root";
$pass = "";
$database = "your_radio_app";
$connect = new mysqli($host, $user, $pass, $database);
if (!$connect) {
die ("connection failed: " . mysqli_connect_error());
} else {
$connect->set_charset('utf8');
}
Default User Login to Admin Panel
Username : admin Password : admin
Last updated
Was this helpful?