Check documentation for the latest version of dhtmlxSuite Step 3. Configure the Database Connectivity DHTMLX Docs

Step 3. Configure the Database Connectivity

To access the data we need to set up the database connectivity.

To configure the database connectivity:
  1. Follow codeigniter_dhtmlx/application/config/ and open the "database.php " file.
  2. Set at least the following variables in the file:

    "database.php" file

    $db['default']['hostname']='localhost';     // the hostname of your database server
    $db['default']['username']='root';          // the username used to connect to DB
    $db['default']['password']='root';          // the password used to connect to DB
    $db['default']['database']='dhtmlx_samples'; // the name of DB you want to connect to
Back to top