X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fcountry_functions.php;h=6f124b47905d0c9866d48f00ff01040841d69e01;hb=452578b5bf17d14099ee44956deb4e4dc0832874;hp=6f31bb5102e47ac9cebdf17eb13c3a5c26b813b4;hpb=7f104f6fe558bb56b4205241435a2357c2feece1;p=mailer.git diff --git a/inc/libs/country_functions.php b/inc/libs/country_functions.php index 6f31bb5102..6f124b4790 100644 --- a/inc/libs/country_functions.php +++ b/inc/libs/country_functions.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Funktionen fuer den Newsletter an die Gaeste * * -------------------------------------------------------------------- * - * * + * $Revision:: 856 $ * + * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: stelzi $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -37,23 +42,27 @@ if (!defined('__SECURITY')) { require($INC); } -// -function COUNTRY_GENERATE_INFO($ID) -{ - $result = SQL_QUERY_ESC("SELECT code, descr FROM "._MYSQL_PREFIX."_countries WHERE id=%s LIMIT 1", - array(bigintval($ID)), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { +// Generate a human-readable country description with code +function COUNTRY_GENERATE_INFO ($id) { + // Load code and description + $result = SQL_QUERY_ESC("SELECT code, descr FROM `{!_MYSQL_PREFIX!}_countries` WHERE id=%s LIMIT 1", + array(bigintval($id)), __FUNCTION__, __LINE__); + + // Is there an entry? + if (SQL_NUMROWS($result) == 1) { + // Load entry list($code, $descr) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - $ret = $descr." (".$code.")"; - } - else - { + + // Construct human-readable description + $ret = sprintf("%s (%s)", $descr, $code); + } else { // Not found! $ret = COUNTRY_NOT_FOUND; } + // Free the result + SQL_FREERESULT($result); + // Return info return $ret; }