X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=click.php;h=2cb035d0827613c5ea317be477ce3bf7f4bcc1a5;hp=8a083637b46035d474f1f8bbc2d069d46b23e5e7;hb=cca98f57dff720b174d21d071cee8303462485d7;hpb=75ad748a68473ace540251427a74fb781b1145e9 diff --git a/click.php b/click.php index 8a083637b4..2cb035d082 100644 --- a/click.php +++ b/click.php @@ -37,30 +37,27 @@ require_once("inc/libs/security_functions.php"); // Init "action" and "what" global $what, $action; $GLOBALS['what'] = ""; $GLOBALS['action'] = ""; -if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']); -if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']); // Set module $GLOBALS['module'] = "click"; $CSS = -1; // Load the required file(s) -require ("inc/config.php"); +require("inc/config.php"); if (((!empty($_GET['user'])) || (!empty($_GET['reseller']))) && (!empty($_GET['banner']))) { // Update clicks counter... - $CLICK = 1; - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refbanner SET clicks=clicks+1 WHERE id=%d LIMIT 1", array(bigintval($_GET['banner'])), __FILE__, __LINE__); - if (SQL_AFFECTEDROWS($link) == 1) { + SQL_QUERY_ESC("UPDATE `{!MYSQL_PREFIX!}_refbanner` SET clicks=clicks+1 WHERE id=%s LIMIT 1", array(bigintval($_GET['banner'])), __FILE__, __LINE__); + if (SQL_AFFECTEDROWS() == 1) { if (!empty($_GET['user'])) { - LOAD_URL(URL."/ref.php?refid=".bigintval($_GET['user'])); - } else { - LOAD_URL(URL."/shop_reseller.php?reseller=".bigintval($_GET['user'])); + LOAD_URL("ref.php?refid=".bigintval($_GET['user'])); + } elseif (!empty($_GET['reseller'])) { + LOAD_URL("shop_reseller.php?reseller=".bigintval($_GET['reseller'])); } - } - exit(); -} else { - // Do nothing for now - die(); -} -// + } // END - if +} // END - if + +// Load index page +LOAD_URL("index.php"); + +// [EOF] ?>