X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fcountry_functions.php;h=7254ff1022ec98c242822250f3a7eeb7a1655f76;hb=6d08952d672c5a5de7d8522f894a5665599a2a4a;hp=5f54e8211c69f648565d0a4d5c6d9667a23cb37f;hpb=cd7d344ea7007cfa20413acd3e03e50f0ab86d86;p=mailer.git diff --git a/inc/libs/country_functions.php b/inc/libs/country_functions.php index 5f54e8211c..7254ff1022 100644 --- a/inc/libs/country_functions.php +++ b/inc/libs/country_functions.php @@ -46,7 +46,7 @@ function generateCountryInfo ($id) { $ret = '{--COUNTRY_CODE_404--}'; // Load code and description - $result = SQL_QUERY_ESC("SELECT + $result = sqlQueryEscaped("SELECT `code`, `descr` FROM @@ -57,9 +57,9 @@ LIMIT 1", array(bigintval($id)), __FUNCTION__, __LINE__); // Is there an entry? - if (SQL_NUMROWS($result) == 1) { + if (sqlNumRows($result) == 1) { // Load entry - $content = SQL_FETCHARRAY($result); + $content = sqlFetchArray($result); //* DEBUG: */ print($id.'=
'.print_r($content, TRUE).'
'); // Construct human-readable description @@ -67,7 +67,7 @@ LIMIT 1", } // END - if // Free the result - SQL_FREERESULT($result); + sqlFreeResult($result); // Return info return $ret;