Your Radio App
  • Welcome
  • Android Studio
    • Getting Started
    • Import Project
    • Generate google-services.json
    • Push Notification
    • Package Name
    • Server Connection
    • Ad Networks
    • AdMob GDPR (Legacy)
    • Funding Choices
    • Change Logo
    • Change Color
    • Change Text
    • Change Images
  • Admin Panel
    • Getting Started
    • Create Database
    • Import Database
    • Upload PHP Script's
    • Database Configuration
    • Related Video Tutorial
  • Publish the App
    • Release Version
    • Generate Signed Bundle / APK
  • Migrate from Older Version
    • v5.2.0 to v5.3.0
    • v5.1.0 to v5.2.0
    • v5.0.2 to v5.1.0
    • v5.0.1 to v5.0.2
    • v5.0.0 to v5.0.1
    • v4.x.x to v5.0.0
    • v3.x.x to v4.x.x
  • Changelog
  • Rating and Support
  • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. Admin Panel

Database Configuration

  1. to change configuration please see includes/config.php file

  2. 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

PreviousUpload PHP Script'sNextRelated Video Tutorial

Last updated 4 years ago

Was this helpful?