]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/country_functions.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / libs / country_functions.php
index 0f4201057f48eaa9dc7fd708850406243428fc22..7254ff1022ec98c242822250f3a7eeb7a1655f76 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -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,17 +57,17 @@ 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);
-               //* DEBUG: */ print($id.'=<pre>'.print_r($content, true).'</pre>');
+               $content = sqlFetchArray($result);
+               //* DEBUG: */ print($id.'=<pre>'.print_r($content, TRUE).'</pre>');
 
                // Construct human-readable description
                $ret = sprintf("%s (%s)", $content['descr'], $content['code']);
        } // END - if
 
        // Free the result
-       SQL_FREERESULT($result);
+       sqlFreeResult($result);
 
        // Return info
        return $ret;