Simplify database connection helper
Co-authored-by: LeOSW42 <673670+LeOSW42@users.noreply.github.com>
This commit is contained in:
@@ -5,10 +5,10 @@ namespace Kabano;
|
|||||||
function sql_connect() {
|
function sql_connect() {
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
$connection = "host='".sql_escape_connection_value($config['SQL_host'])."'"
|
$connection = "host=".$config['SQL_host']
|
||||||
." dbname='".sql_escape_connection_value($config['SQL_db'])."'"
|
." dbname=".$config['SQL_db']
|
||||||
." user='".sql_escape_connection_value($config['SQL_user'])."'"
|
." user=".$config['SQL_user']
|
||||||
." password='".sql_escape_connection_value($config['SQL_pass'])."'";
|
." password=".$config['SQL_pass'];
|
||||||
|
|
||||||
$con = pg_connect($connection);
|
$con = pg_connect($connection);
|
||||||
if (!$con) {
|
if (!$con) {
|
||||||
@@ -19,9 +19,3 @@ function sql_connect() {
|
|||||||
|
|
||||||
return $con;
|
return $con;
|
||||||
}
|
}
|
||||||
|
|
||||||
function sql_escape_connection_value($value) {
|
|
||||||
$value = (string)$value;
|
|
||||||
$value = str_replace("\0", '', $value);
|
|
||||||
return pg_escape_string($value);
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user