Advertisement
johnburn

Untitled

May 11th, 2011
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. require_once ("../config.php");
  3. if (intval($_SESSION["login_admin_id"]) == 0) {
  4.     header("location:index.php");
  5.     exit();
  6. }
  7. require_once ("../classes/misc.func.php");
  8. require_once ("../classes/manipulate.php");
  9. $data = new DataManipulator();
  10. $title = $data->select("SiteManager", "*", array("SiteVariable" => "SiteName"));
  11. $title = $title[0];
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement