"); LOAD_TEMPLATE("surfbar_start_banner"); // This makes the footer appear again unset($_GET['frame']); } else { // Prepare content $content = array( 'restart' => $_CONFIG['surfbar_restart_time'], 'start' => str_repeat("X", strlen($_CONFIG['surfbar_restart_time'])), 'autostart' => ($_CONFIG['surfbar_autostart'] == "Y") ? "true" : "false" ); // Load template for stopped surfbar LOAD_TEMPLATE("surfbar_stopped", false, $content); } } elseif ((isset($_GET['check'])) && (isset($_GET['id'])) && (isset($_GET['salt']))) { // Dummy next id get SURFBAR_GET_NEXT_ID($_GET['id']); // Check reload lock and validation code if ((!SURFBAR_CHECK_RELOAD_LOCK($_GET['id'])) && (SURFBAR_CHECK_VALIDATION_CODE($_GET['id'], $_GET['check'], $_GET['salt']))) { // Lock the URL (id) down SURFBAR_LOCKDOWN_ID($_GET['id']); // Code is valid so pay points here SURFBAR_PAY_POINTS($_GET['id']); // Check if reload is full if (SURFBAR_CHECK_RELOAD_FULL()) { // Then load waiting page LOAD_URL("surfbar.php?frame=stop"); } // END - if } else { // Reload to stop frame! LOAD_URL("surfbar.php?frame=stop"); } // All done, so fix notice for footer.php $footer = 1; } else { // Prepare content $content = ""; // Determine template name $templateName = SURFBAR_DETERMINE_TEMPLATE_NAME(); // Frame "top" set? if ((isset($_GET['frame'])) && ($_GET['frame'] == "top")) { // Determine next id $nextId = SURFBAR_GET_NEXT_ID(); // Is there a valid id? if ($nextId > 0) { // Then prepare other content $content = array( 'id' => $nextId, 'check' => SURFBAR_GENERATE_VALIDATION_CODE($nextId), 'salt' => SURFBAR_GET_SALT(), 'reward' => TRANSLATE_COMMA(SURFBAR_GET_REWARD($nextId)), 'url' => SURFBAR_GET_URL($nextId), 'curr_reload' => SURFBAR_GET_USER_RELOAD_LOCK(), 'max_urls' => SURFBAR_GET_TOTAL_URLS(), 'reload' => SURFBAR_GET_RELOAD_TIME($nextId) ); // Update salt (double-call lock!) SURFBAR_UPDATE_SALT(); } else { // Load new URL LOAD_URL("surfbar.php?frame=stop2"); } } elseif ((isset($_GET['frame'])) && ($_GET['frame'] == "start")) { // Starter frame found so let the footer display unset($_GET['frame']); } else { // Load header in frameset mode $isFrameset = true; } // Load header require_once(PATH."inc/header.php"); // Load that template //* DEBUG: */ die("templateName={$templateName}
\ncontent=
".print_r($content, true)."
"); LOAD_TEMPLATE($templateName, false, $content); } // Load footer require_once(PATH."inc/footer.php"); } else { // You have to configure first! LOAD_URL("install.php"); } // Close any open database connection here SQL_CLOSE($link, __FILE__, __LINE__); // Really all done here... ;-) ?>