View file web/hosting.php

File size: 2.79Kb
<?php

include("config.php");

include("core.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>Site Links</title>";

  echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";

  echo "</head>";

  echo "<body>";

  echo "<p align=\"center\">";

  echo "<b>hosting</b><br/>";

  echo "If u are interested in getting a site like this or similar<br/>u can contact our host Satanbitch at: <b>fiona@scotland.uk.to</b>";

  echo "<br/>or visit <a href=\"http://wickedempire.co.uk\">WICKEDEMPIRE</a> for any inquiries<br/>";

  echo "<a href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";

  echo "</p>";

  echo "</body>";

?>

</html>