View file web/gallery.php

File size: 3.31Kb
<?php
/////////////////////////////////////////////
/////// Script done by drwap           /////
////// You are Free to modifie it as  /////
///// you wish just leave this mark! /////
/////////////////////////////////////////
include("config.php");
include("core.php");
include("galconf.php");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
//header('Content-type: application/vnd.wap.xhtml+xml'); 
echo "<?xml version=\"1.0\"?>";
echo "<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD XHTML Mobile 1.0//EN\" \"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">";
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<?php
$bcon = connectdb();
if (!$bcon)
{
    echo "<head>";
    echo "<title>Error!!!</title>";
    echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/white_medium.css\">";
    echo "</head>";
    echo "<body>";
    echo "<p align=\"center\">";
    echo "<img src=\"../images/notok.gif\" alt=\"!\"/><br/>";
    echo "<b><strong>Error! Cannot Connect To Database...</strong></b><br/><br/>";
    echo "This error happens usually when backing up the database, please be patient...";
    echo "</p>";
    echo "</body>";
    echo "</html>";
    exit();
}
$brws = explode("/",$HTTP_USER_AGENT);
$ubr = $brws[0];
$uip = getip();
$action = $_GET["action"];
$sid = $_GET["sid"];
$page = $_GET["page"];
$who = $_GET["who"];
$sitename = mysql_fetch_array(mysql_query("SELECT value FROM ibwf_settings WHERE name='sitename'"));
$sitename = $sitename[0];
$uid = getuid_sid($sid);
$theme = mysql_fetch_array(mysql_query("SELECT theme FROM ibwf_users WHERE id='".$uid."'"));
cleardata();

if(($action != "") && ($action!="terms"))
{
    $uid = getuid_sid($sid);
    if((islogged($sid)==false)||($uid==0))
    {
      echo "<head>";
      echo "<title>Error</title>";
      echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/white_medium.css\">";
      echo "</head>";
      echo "<body>";
      echo "<p align=\"center\">";
      echo "You are not logged in<br/>";
      echo "Or Your session has been expired<br/><br/>";
      echo "<a href=\"index.php\">Login</a>";
      echo "</p>";
      echo "</body>";
      echo "</html>";
      exit();
    }
}
////////////////////////////////////////MAIN PAGE
  echo "<head>";
  echo "<title>$sitename $gallery</title>";
  echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
  echo "</head>";
  echo "<body>";
  echo "<p align=\"center\">";
  echo "<a href=\"$siteurl/fem/index.php?action=fem&amp;sid=$sid\">$femname</a><br/>";
    echo "<a href=\"$siteurl/male/index.php?action=male&amp;sid=$sid\">$malename</a><br/>";
      echo "<a href=\"$siteurl/femx/index.php?action=femx&amp;sid=$sid\">$femxname</a><br/>";
        echo "<a href=\"$siteurl/malex/index.php?action=malex&amp;sid=$sid\">$malexname</a><br/>";
          echo "<a href=\"$siteurl/misc/index.php?action=misc&amp;sid=$sid\">$miscname</a><br/>";
          echo "<a href=\"$siteurl/avats/index.php?action=avats&amp;sid=$sid\">General Avatars</a><br/>";
          echo "<a href=\"$siteurl/avatars/index.php?action=avatars&amp;sid=$sid\">Personal Avatars</a><br/>";
  echo "<a href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
  echo "</p>";
  echo "</body>";
?>
</html>