]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_coupon.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-list_coupon.php
index f733ae59428d9eae5fa73734c6323db556dd4484..3360fd83f9fa1cb3b683f76bd874e511179515e8 100644 (file)
@@ -45,7 +45,7 @@ addYouAreHereLink('admin', __FILE__);
 
 if (isGetRequestElementSet('coupon_id')) {
        // List userids for given coupon
-       $result = SQL_QUERY_ESC('SELECT
+       $result = sqlQueryEscaped('SELECT
        `u`.`coupon_id`,
        `u`.`userid`,
        UNIX_TIMESTAMP(`u`.`cashed_on`) AS `cashed_on`,
@@ -70,12 +70,12 @@ ORDER BY
                ), __FILE__, __LINE__);
 
        // Are there entries?
-       if (!SQL_HASZERONUMS($result)) {
+       if (!ifSqlHasZeroNums($result)) {
                // Init variable
                $OUT = '';
 
                // Load all rows
-               while ($content = SQL_FETCHARRAY($result)) {
+               while ($content = sqlFetchArray($result)) {
                        // Translate all timestamps
                        $content['cashed_on']      = generateDateTime($content['cashed_on']     , '2');
                        $content['coupon_created'] = generateDateTime($content['coupon_created'], '2');
@@ -93,10 +93,10 @@ ORDER BY
        }
 
        // Free result
-       SQL_FREERESULT($result);
+       sqlFreeResult($result);
 } else {
        // Check if the user has cashed coupons
-       $result = SQL_QUERY('SELECT
+       $result = sqlQuery('SELECT
        `d`.`id` AS `coupon_id`,
        UNIX_TIMESTAMP(`d`.`coupon_created`) AS `coupon_created`,
        UNIX_TIMESTAMP(`d`.`coupon_expired`) AS `coupon_expired`,
@@ -110,12 +110,12 @@ ORDER BY
        `d`.`id` ASC', __FILE__, __LINE__);
 
        // Are there entries?
-       if (!SQL_HASZERONUMS($result)) {
+       if (!ifSqlHasZeroNums($result)) {
                // Init variable
                $OUT = '';
 
                // Load all rows
-               while ($content = SQL_FETCHARRAY($result)) {
+               while ($content = sqlFetchArray($result)) {
                        // Translate all timestamps
                        $content['coupon_created'] = generateDateTime($content['coupon_created'], '2');
                        $content['coupon_expired'] = generateDateTime($content['coupon_expired'], '2');
@@ -132,7 +132,7 @@ ORDER BY
        }
 
        // Free result
-       SQL_FREERESULT($result);
+       sqlFreeResult($result);
 }
 
 // [EOF]