google_forms/application/config/database.php

40 lines
911 B
PHP
Raw Normal View History

2024-07-10 12:37:36 +00:00
<?php
2024-08-09 12:04:48 +00:00
/**
* This file handles the XYZ functionality in the application.
* @category YourCategory
* @package YourApplication
* @subpackage YourSubpackage
* @author Your Name
* @date YYYY-MM-DD
* @version 1.0
*/
defined('BASEPATH') or exit('No direct script access allowed');
2024-07-10 12:37:36 +00:00
$active_group = 'default';
2024-08-09 12:04:48 +00:00
$query_builder = true;
2024-07-10 12:37:36 +00:00
$db['default'] = array(
2024-08-09 12:04:48 +00:00
'dsn' => '',
'hostname' => 'localhost',
'username' => 'torun',
'password' => 'thug@NIT20',
'database' => 'google_forms',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => false,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => false,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => false,
'compress' => false,
'stricton' => false,
'failover' => array(),
'save_queries' => true
2024-07-10 12:37:36 +00:00
);