Hello friends, I am having a MySQL issue while setting up an Instagram script. It keeps saying there is a problem on line 35. This line is the MySQL user line. I can't solve the issue and it hasn't been fixed yet. I would greatly appreciate your help.
```php
return array(
//Project Variables
"project" => array(
"cookiePath" => "./app/Cookies/",
"licenseKey" => "x", //Enter the provided license key.
"cronJobToken" => "y", //Make sure to change this.
"onlyHttps" => TRUE,
"adminPrefix" => "/admin",
"resellerPrefix" => "/reseller",
"memberLoginPrefix" => "/instagram"
),
//App Variables
"app" => array(
"theme" => "default",
"layout" => "layout/default",
"language" => "en",
"base_url" => NULL,
"handle_errors" => TRUE,
"log_errors" => FALSE,
"router_case_sensitive" => TRUE
),
//Database Variables
"database" => array(
"DefaultConnection" => array(
//mysql, sqlsrv, pgsql are tested connections and work perfectly.
"driver" => "mysql",
"host" => "localhost",
"port" => "3306",
"name" => "dbname_here",
"user" => "db_user_here",
"password" => "password_here"
)
)
);
```
```php
return array(
//Project Variables
"project" => array(
"cookiePath" => "./app/Cookies/",
"licenseKey" => "x", //Enter the provided license key.
"cronJobToken" => "y", //Make sure to change this.
"onlyHttps" => TRUE,
"adminPrefix" => "/admin",
"resellerPrefix" => "/reseller",
"memberLoginPrefix" => "/instagram"
),
//App Variables
"app" => array(
"theme" => "default",
"layout" => "layout/default",
"language" => "en",
"base_url" => NULL,
"handle_errors" => TRUE,
"log_errors" => FALSE,
"router_case_sensitive" => TRUE
),
//Database Variables
"database" => array(
"DefaultConnection" => array(
//mysql, sqlsrv, pgsql are tested connections and work perfectly.
"driver" => "mysql",
"host" => "localhost",
"port" => "3306",
"name" => "dbname_here",
"user" => "db_user_here",
"password" => "password_here"
)
)
);
```