Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit ce21c31

Browse files
committed
adding allow_logging to the docblock
1 parent 641141a commit ce21c31

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

bin/OBJ_mysql.php

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@
2121
*
2222
** Config DATA:
2323
**
24-
** $database_info["hostname"] = "YOUR_HOST";
25-
** $database_info["database"] = "YOUR_DATABASE_NAME";
26-
** $database_info["username"] = "USER_NAME";
27-
** $database_info["password"] = "PASSWORD";
28-
** $database_info["port"] = "PORT";
29-
** $database_info["charset"] = "CHARSET";
30-
** $database_info["exit_on_error"] = TRUE;
31-
** $database_info["echo_on_error"] = TRUE;
24+
** $config["hostname"] = "YOUR_HOST";
25+
** $config["database"] = "YOUR_DATABASE_NAME";
26+
** $config["username"] = "USER_NAME";
27+
** $config["password"] = "PASSWORD";
28+
** $config["port"] = "PORT";
29+
** $config["charset"] = "CHARSET";
30+
** $config["exit_on_error"] = TRUE;
31+
** $config["echo_on_error"] = TRUE;
32+
** $config["allow_logging"] = "TRUE|FALSE"; //defaults to true
3233
*
3334
*
3435
* @package Database
@@ -74,9 +75,10 @@
7475
* non mandatory configurations
7576
*
7677
** $config["port"] = "PORT"; //defaults to 3306
77-
** $config["charset"] = "CHARSET"; //defaults to UTF-8
78+
** $config["charset"] = "CHARSET"; //defaults to UTF8
7879
** $config["exit_on_error"] = "TRUE|FALSE"; //defaults to true
7980
** $config["echo_on_error"] = "TRUE|FALSE"; //defaults to true
81+
** $config["allow_logging"] = "TRUE|FALSE"; //defaults to true
8082
*
8183
*
8284
* @param array $config config array

0 commit comments

Comments
 (0)