if ($index == 42) { error('Magic found'); } if ($index < 1) { $index = 1; dwrite('Index out of bound (less than 1)', S_ERROR); } if ($index > 9) { $index = 9; dwrite('Index out of bound (more than 9)', S_ERROR); } for ($i = 1; $i <= 9; $i++) { if ($i == $index) { echo "[{$i}]"; } else { if (inGET('gimmedebug')) { echo ' <a href="?index=' . $i . '&gimmedebug=1">' . $i . '</a> '; } else { echo ' <a href="?index=' . $i . '">' . $i . '</a> '; } } } ?> :.</strong> <?php dwrite('[End]'); if (DEBUG) { echo_debug(); } ?> </body>
<?php require_once 's/s.php'; $tpl = new STemplate(); $tpl->vars['show_login_box'] = _SESSION('show_login_box', true); $tpl->vars['login_error'] = ''; $tpl->vars['user_name'] = _SESSION('user_name'); if (inPOST('try_it')) { if (_POST('login') != 'test' || _POST('password') != '12345') { $tpl->vars['login_error'] = 'Invalid credentials. Try test/12345'; } else { $_SESSION['user_name'] = 'Test test'; $_SESSION['show_login_box'] = false; header('Location: ?' . (inGET('gimmedebug') ? 'gimmedebug=1' : '')); return; } } if (inPOST('try_again')) { $_SESSION['show_login_box'] = true; header('Location: ?' . (inGET('gimmedebug') ? 'gimmedebug=1' : '')); return; } echo $tpl->process(BASE . 'index.tpl'); if (DEBUG) { echo_debug(); }