You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 69 guest(s) and 2 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - Can someone merge two admin.php files together? [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
jdawgg2020j
Nuke Cadet
Nuke Cadet


Joined: Feb 20, 2004
Posts: 6


PostPosted: Tue Aug 02, 2005 8:52 am Reply with quoteBack to top

I am trying to install NukeLadder on my PHP-Nuke site. I have PHP-Nuke 7.8, so the admin.php file is really recent. However, NukeLadder was designed for Nuke 6.9.

I bet you can already tell where this is going...

The thing works fine, but none of the admin features for NukeLadder work without its customized admin.php file. But there are NO COMMENTS at all to show what was added, and if you don't use the admin.php that Nuke 7.8 comes with, then you can't access the admin panel at all..

So here are the two files, can someone merge the two so we get what was customized from the 6.9 version added to the 7.8 version?

NukeLadder's EDITED 6.9 admin.php:
Code:

<?php

/************************************************************************/
/* PHP-NUKE: Advanced Content Management System                         */
/* ============================================                         */
/*                                                                      */
/* Copyright (c) 2002 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

require_once("mainfile.php");
get_lang(admin);

function create_first($name, $url, $email, $pwd, $user_new) {
    global $prefix, $db, $user_prefix;
    $first = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_authors"));
    if ($first == 0) {
   $pwd = md5($pwd);
   $the_adm = "God";
   $sql = "INSERT INTO ".$prefix."_authors VALUES ('$name', '$the_adm', '$url', '$email', '$pwd', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '')";
   $db->sql_query($sql);
   if ($user_new == 1) {
       $user_regdate = date("M d, Y");
       $user_avatar = "blank.gif";
       $commentlimit = 4096;
       if ($url == "http://") { $url = ""; }
       $sql = "INSERT INTO ".$user_prefix."_users (user_id, username, user_email, user_website, user_avatar, user_regdate, user_password, theme, commentmax, user_lang, user_dateformat) VALUES (NULL,'$name','$email','$url','$user_avatar','$user_regdate','$pwd','$Default_Theme','$commentlimit','english','D M d, Y g:i a')";
       $db->sql_query($sql);
   }
   login();
    }
}

$the_first = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_authors"));
if ($the_first == 0) {
    if (!$name) {
    include("header.php");
    title("$sitename: "._ADMINISTRATION."");
    OpenTable();
    echo "<center><b>"._NOADMINYET."</b></center><br><br>"
   ."<form action=\"admin.php\" method=\"post\">"
   ."<table border=\"0\">"
   ."<tr><td><b>"._NICKNAME.":</b></td><td><input type=\"text\" name=\"name\" size=\"30\" maxlength=\"25\"></td></tr>"
   ."<tr><td><b>"._HOMEPAGE.":</b></td><td><input type=\"text\" name=\"url\" size=\"30\" maxlength=\"255\" value=\"http://\"></td></tr>"
   ."<tr><td><b>"._EMAIL.":</b></td><td><input type=\"text\" name=\"email\" size=\"30\" maxlength=\"255\"></td></tr>"
   ."<tr><td><b>"._PASSWORD.":</b></td><td><input type=\"password\" name=\"pwd\" size=\"11\" maxlength=\"10\"></td></tr>"
   ."<tr><td colspan=\"2\">"._CREATEUSERDATA."  <input type=\"radio\" name=\"user_new\" value=\"1\" checked>"._YES."&nbsp;&nbsp;<input type=\"radio\" name=\"user_new\" value=\"0\">"._NO."</td></tr>"
   ."<tr><td><input type=\"hidden\" name=\"fop\" value=\"create_first\">"
   ."<input type=\"submit\" value=\""._SUBMIT."\">"
   ."</td></tr></table></form>";
    CloseTable();
    include("footer.php");
    }
    switch($fop) {
   case "create_first":
   create_first($name, $url, $email, $pwd, $user_new);
   break;
    }
    die();
}

require("auth.php");

if(!isset($op)) { $op = "adminMain"; }
$pagetitle = "- "._ADMINMENU."";

/*********************************************************/
/* Login Function                                        */
/*********************************************************/

function login() {
    global $gfx_chk;
    include ("header.php");
    mt_srand ((double)microtime()*1000000);
    $maxran = 1000000;
    $random_num = mt_rand(0, $maxran);
    OpenTable();
    echo "<center><font class=\"title\"><b>"._ADMINLOGIN."</b></font></center>";
    CloseTable();
    echo "<br>";
    OpenTable();
    echo "<form action=\"admin.php\" method=\"post\">"
        ."<table border=\"0\">"
   ."<tr><td>"._ADMINID."</td>"
   ."<td><input type=\"text\" NAME=\"aid\" SIZE=\"20\" MAXLENGTH=\"25\"></td></tr>"
   ."<tr><td>"._PASSWORD."</td>"
   ."<td><input type=\"password\" NAME=\"pwd\" SIZE=\"20\" MAXLENGTH=\"18\"></td></tr>";
    if (extension_loaded("gd") AND ($gfx_chk == 1 OR $gfx_chk == 5 OR $gfx_chk == 6 OR $gfx_chk == 7)) {
   echo "<tr><td colspan='2'>"._SECURITYCODE.": <img src='admin.php?op=gfx&random_num=$random_num' border='1' alt='"._SECURITYCODE."' title='"._SECURITYCODE."'></td></tr>"
       ."<tr><td colspan='2'>"._TYPESECCODE.": <input type=\"text\" NAME=\"gfx_check\" SIZE=\"7\" MAXLENGTH=\"6\"></td></tr>";
    }
    echo "<tr><td>"
   ."<input type=\"hidden\" NAME=\"random_num\" value=\"$random_num\">"
   ."<input type=\"hidden\" NAME=\"op\" value=\"login\">"
   ."<input type=\"submit\" VALUE=\""._LOGIN."\">"
   ."</td></tr></table>"
   ."</form>";
    CloseTable();
    include ("footer.php");
}

function gfx($random_num) {
    global $prefix, $db;
    require("config.php");
    $datekey = date("F j");
    $rcode = hexdec(md5($_SERVER[HTTP_USER_AGENT] . $sitekey . $random_num . $datekey));
    $code = substr($rcode, 2, 6);
    $image = ImageCreateFromJPEG("images/admin/code_bg.jpg");
    $text_color = ImageColorAllocate($image, 80, 80, 80);
    Header("Content-type: image/jpeg");
    ImageString ($image, 5, 12, 2, $code, $text_color);
    ImageJPEG($image, '', 75);
    ImageDestroy($image);
    die();
}

function deleteNotice($id, $table, $op_back) {
    global $db;
    $db->sql_query("DELETE FROM $table WHERE id = '$id'");
    Header("Location: admin.php?op=$op_back");
}

/*********************************************************/
/* Administration Menu Function                          */
/*********************************************************/

function adminmenu($url, $title, $image) {
    global $counter, $admingraphic, $Default_Theme;
    $ThemeSel = get_theme();
    if (file_exists("themes/$ThemeSel/images/admin/$image")) {
   $image = "themes/$ThemeSel/images/admin/$image";
    } else {
   $image = "images/admin/$image";
    }
    if ($admingraphic == 1) {
   $img = "<img src=\"$image\" border=\"0\" alt=\"$title\" title=\"$title\"></a><br>";
   $close = "";
    } else {
   $image = "";
   $close = "</a>";
    }
    echo "<td align=\"center\"><font class=\"content\"><a href=\"$url\">$img<b>$title</b>$close<br><br></font></td>";
    if ($counter == 5) {
   echo "</tr><tr>";
   $counter = 0;
    } else {
   $counter++;
    }
}

function GraphicAdmin() {
    global $aid, $admingraphic, $language, $admin, $prefix, $db;
    $newsubs = $db->sql_numrows($db->sql_query("SELECT qid FROM ".$prefix."_queue"));
    $sql = "SELECT radminarticle,radmintopic,radminuser,radminsurvey,radminsection,radminlink,radminephem,radminfaq,radmindownload,radminreviews,radminnewsletter,radminforum,radmincontent,radminency,radminsuper FROM ".$prefix."_authors WHERE aid='$aid'";
    $result = $db->sql_query($sql);
    $row = $db->sql_fetchrow($result);
    $radminarticle = $row[radminarticle];
    $radmintopic = $row[radmintopic];
    $radminuser = $row[radminuser];
    $radminsurvey = $row[radminsurvey];
    $radminsection = $row[radminsection];
    $radminlink = $row[radminlink];
    $radminephem = $row[radminephem];
    $radminfaq = $row[radminfaq];
    $radmindownload = $row[radmindownload];
    $radminreviews = $row[radminreviews];
    $radminnewsletter = $row[radminnewsletter];
    $radminforum = $row[radminforum];
    $radmincontent = $row[radmincontent];
    $radminency = $row[radminency];
    $radminsuper = $row[radminsuper];
    OpenTable();
    echo "<center><a href=\"admin.php\"><font class='title'>"._ADMINMENU."</font></a>";
    echo "<br><br>";
    echo"<table border=\"0\" width=\"100%\" cellspacing=\"1\"><tr>";
    $linksdir = dir("admin/links");
    while($func=$linksdir->read()) {
        if(substr($func, 0, 6) == "links.") {
           $menulist .= "$func ";
   }
    }
    closedir($linksdir->handle);
    $menulist = explode(" ", $menulist);
    sort($menulist);
    for ($i=0; $i < sizeof($menulist); $i++) {
   if($menulist[$i]!="") {
       $counter = 0;
       include($linksdir->path."/$menulist[$i]");
   }
    }
    adminmenu("admin.php?op=logout", ""._ADMINLOGOUT."", "logout.gif");
    echo"</tr></table></center>";
    CloseTable();
    echo "<br>";
}

/*********************************************************/
/* Administration Main Function                          */
/*********************************************************/

function adminMain() {
    global $language, $admin, $aid, $prefix, $file, $db, $sitename, $user_prefix;
    include ("header.php");
    $dummy = 0;
    $Today = getdate();
    $month = $Today['month'];
    $mday = $Today['mday'];
    $year = $Today['year'];
    $pmonth = $Today['month'];
    $pmday = $Today['mday'];
    $pmday = $mday-1;
    $pyear = $Today['year'];
    if ($pmonth=="January") { $pmonth=1; } else
    if ($pmonth=="February") { $pmonth=2; } else
    if ($pmonth=="March") { $pmonth=3; } else
    if ($pmonth=="April") { $pmonth=4; } else
    if ($pmonth=="May") { $pmonth=5; } else
    if ($pmonth=="June") { $pmonth=6; } else
    if ($pmonth=="July") { $pmonth=7; } else
    if ($pmonth=="August") { $pmonth=8; } else
    if ($pmonth=="September") { $pmonth=9; } else
    if ($pmonth=="October") { $pmonth=10; } else
    if ($pmonth=="November") { $pmonth=11; } else
    if ($pmonth=="December") { $pmonth=12; };
    $test = mktime (0,0,0,$pmonth,$pmday,$pyear,1);
    $curDate2 = "%".$month[0].$month[1].$month[2]."%".$mday."%".$year."%";
    $preday = strftime ("%d",$test);
    $premonth = strftime ("%B",$test);
    $preyear = strftime ("%Y",$test);
    $curDateP = "%".$premonth[0].$premonth[1].$premonth[2]."%".$preday."%".$preyear."%";
    GraphicAdmin();
    $sql = "SELECT radminarticle, radminsuper, admlanguage FROM ".$prefix."_authors WHERE aid='$aid'";
    $result = $db->sql_query($sql);
    $row = $db->sql_fetchrow($result);
    $radminarticle = $row[radminarticle];
    $radminsuper = $row[radminsuper];
    $admlanguage = $row[admlanguage];
    if ($admlanguage != "" ) {
   $queryalang = "WHERE alanguage='$admlanguage' ";
    } else {
   $queryalang = "";
    }
    $sql = "SELECT main_module from ".$prefix."_main";
    $result = $db->sql_query($sql);
    $row = $db->sql_fetchrow($result);
    $main_module = $row[main_module];
    OpenTable();
    echo "<center><b>$sitename: "._DEFHOMEMODULE."</b><br><br>"
   .""._MODULEINHOME." <b>$main_module</b><br>[ <a href=\"admin.php?op=modules\">"._CHANGE."</a> ]</center>";
    CloseTable();
    echo "<br>";
    OpenTable();
    $guest_online_num = $db->sql_numrows($db->sql_query("SELECT uname FROM ".$prefix."_session WHERE guest='1'"));
    $member_online_num = $db->sql_numrows($db->sql_query("SELECT uname FROM ".$prefix."_session WHERE guest='0'"));
    $who_online_num = $guest_online_num + $member_online_num;
    $who_online = "<center><font class=\"option\">"._WHOSONLINE."</font><br><br><font class=\"content\">"._CURRENTLY." $guest_online_num "._GUESTS." $member_online_num "._MEMBERS."<br>";
    $sql = "SELECT COUNT(user_id) AS userCount from $user_prefix"._users." WHERE user_regdate LIKE '$curDate2'";
    $result = $db->sql_query($sql);
    $row = $db->sql_fetchrow($result);
    $userCount = $row[userCount];
    $sql = "SELECT COUNT(user_id) AS userCount FROM $user_prefix"._users." WHERE user_regdate LIKE '$curDateP'";
    $result = $db->sql_query($sql);
    $row = $db->sql_fetchrow($result);
    $userCount2 = $row[userCount];
    echo "<center>$who_online<br>"
   .""._BTD.": <b>$userCount</b> - "._BYD.": <b>$userCount2</b></center>";
    CloseTable();
    echo "<br>";
    OpenTable();
    echo "<center><b>"._AUTOMATEDARTICLES."</b></center><br>";
    $count = 0;
    $sql = "SELECT anid, aid, title, time, alanguage FROM ".$prefix."_autonews $queryalang ORDER BY time ASC";
    $result = $db->sql_query($sql);
    while ($row = $db->sql_fetchrow($result)) {
   $anid = $row[anid];
   $said = $row[aid];
   $title = $row[title];
   $time = $row[time];
   $alanguage = $row[alanguage];
   if ($alanguage == "") {
       $alanguage = ""._ALL."";
   }
   if ($anid != "") {
       if ($count == 0) {
      echo "<table border=\"1\" width=\"100%\">";
      $count = 1;
       }
       $time = ereg_replace(" ", "@", $time);
       if (($radminarticle==1) OR ($radminsuper==1)) {
      if (($radminarticle==1) AND ($aid == $said) OR ($radminsuper==1)) {
              echo "<tr><td nowrap>&nbsp;(<a href=\"admin.php?op=autoEdit&amp;anid=$anid\">"._EDIT."</a>-<a href=\"admin.php?op=autoDelete&amp;anid=$anid\">"._DELETE."</a>)&nbsp;</td><td width=\"100%\">&nbsp;$title&nbsp;</td><td align=\"center\">&nbsp;$alanguage&nbsp;</td><td nowrap>&nbsp;$time&nbsp;</td></tr>"; /* Multilingual Code : added column to display language */
      } else {
          echo "<tr><td>&nbsp;("._NOFUNCTIONS.")&nbsp;</td><td width=\"100%\">&nbsp;$title&nbsp;</td><td align=\"center\">&nbsp;$alanguage&nbsp;</td><td nowrap>&nbsp;$time&nbsp;</td></tr>"; /* Multilingual Code : added column to display language */
      }
       } else {
      echo "<tr><td width=\"100%\">&nbsp;$title&nbsp;</td><td align=\"center\">&nbsp;$alanguage&nbsp;</td><td nowrap>&nbsp;$time&nbsp;</td></tr>"; /* Multilingual Code : added column to display language */
       }
   }
    }
    if (($anid == "") AND ($count == 0)) {
   echo "<center><i>"._NOAUTOARTICLES."</i></center>";
    }
    if ($count == 1) {
        echo "</table>";
    }
    CloseTable();
    echo "<br>";
    OpenTable();
    echo "<center><b>"._LAST." 20 "._ARTICLES."</b></center><br>";
    $sql = "SELECT sid, aid, title, time, topic, informant, alanguage FROM ".$prefix."_stories $queryalang ORDER BY time DESC LIMIT 0,20";
    $result = $db->sql_query($sql);
    echo "<center><table border=\"1\" width=\"100%\" bgcolor=\"$bgcolor1\">";
    while ($row = $db->sql_fetchrow($result)) {
   $sid = $row['sid'];
   $said = $row[aid];
   $title = $row[title];
   $time = $row[time];
   $topic = $row[topic];
   $informant = $row[informant];
   $alanguage = $row[alanguage];
   $sql = "SELECT topicname FROM ".$prefix."_topics WHERE topicid='$topic'";
   $ta = $db->sql_query($sql);
   $row = $db->sql_fetchrow($ta);
   $topicname = $row[topicname];
   if ($alanguage == "") {
       $alanguage = ""._ALL."";
   }
   formatTimestamp($time);
   echo "<tr><td align=\"right\"><b>$sid</b>"
       ."</td><td align=\"left\" width=\"100%\"><a href=\"article.html$sid\">$title</a>"
       ."</td><td align=\"center\">$alanguage"
       ."</td><td align=\"right\">$topicname";
   if (($radminarticle==1) OR ($radminsuper==1)) {
       if (($radminarticle==1) AND ($aid == $said) OR ($radminsuper==1)) {
      echo "</td><td align=\"right\" nowrap>(<a href=\"admin.php?op=EditStory&sid=$sid\">"._EDIT."</a>-<a href=\"admin.php?op=RemoveStory&sid=$sid\">"._DELETE."</a>)"
          ."</td></tr>";
       } else {
      echo "</td><td align=\"right\" nowrap><font class=\"content\"><i>("._NOFUNCTIONS.")</i></font>"
          ."</td></tr>";
       }
   } else {
       echo "</td></tr>";
   }
    }
    echo "</table>";
    if (($radminarticle==1) OR ($radminsuper==1)) {
   echo "<center>"
       ."<form action=\"admin.php\" method=\"post\">"
       .""._STORYID.": <input type=\"text\" NAME=\"sid\" SIZE=\"10\">"
       ."<select name=\"op\">"
       ."<option value=\"EditStory\" SELECTED>"._EDIT."</option>"
       ."<option value=\"RemoveStory\">"._DELETE."</option>"
       ."</select>"
       ."<input type=\"submit\" value=\""._GO."\">"
       ."</form></center>";
    }
    CloseTable();
    echo "<br>";
    OpenTable();
    echo "<center><b>Last 20 Ladders</b></center><br>";
    $sql = "SELECT sid, aid, title, time, game, informant, alanguage FROM ".$prefix."_ladders $queryalang ORDER BY time DESC LIMIT 0,20";
    $result = $db->sql_query($sql);
    echo "<center><table border=\"1\" width=\"100%\" bgcolor=\"$bgcolor1\">";
    while ($row = $db->sql_fetchrow($result)) {
   $sid = $row['sid'];
   $said = $row[aid];
   $title = $row[title];
   $time = $row[time];
   $game = $row[game];
   $informant = $row[informant];
   $alanguage = $row[alanguage];
   $sql = "SELECT topicname FROM ".$prefix."_games WHERE topicid='$game'";
   $ta = $db->sql_query($sql);
   $row = $db->sql_fetchrow($ta);
   $gamename = $row[gamename];
   if ($alanguage == "") {
       $alanguage = ""._ALL."";
   }
   formatTimestamp($time);
   echo "<tr><td align=\"right\"><b>$sid</b>"
       ."</td><td align=\"left\" width=\"100%\"><a href=\"modules.php?name=Ladders&file=article&sid=$sid\">$title</a>"
       ."</td><td align=\"center\">$alanguage"
       ."</td><td align=\"right\">$gamename";
   if (($radminarticle==1) OR ($radminsuper==1)) {
       if (($radminarticle==1) AND ($aid == $said) OR ($radminsuper==1)) {
      echo "</td><td align=\"right\" nowrap>(<a href=\"admin.php?op=EditLadder&sid=$sid\">"._EDIT."</a>-<a href=\"admin.php?op=RemoveLadder&sid=$sid\">"._DELETE."</a>)"
          ."</td></tr>";
       } else {
      echo "</td><td align=\"right\" nowrap><font class=\"content\"><i>("._NOFUNCTIONS.")</i></font>"
          ."</td></tr>";
       }
   } else {
       echo "</td></tr>";
   }
    }
    echo "</table>";
    if (($radminarticle==1) OR ($radminsuper==1)) {
   echo "<center>"
       ."<form action=\"admin.php\" method=\"post\">"
       ."Game ID: <input type=\"text\" NAME=\"sid\" SIZE=\"10\">"
       ."<select name=\"op\">"
       ."<option value=\"EditLadder\" SELECTED>"._EDIT."</option>"
       ."<option value=\"RemoveLadder\">"._DELETE."</option>"
       ."</select>"
       ."<input type=\"submit\" value=\""._GO."\">"
       ."</form></center>";
    }
    CloseTable();
    $sql = "SELECT pollID, pollTitle FROM ".$prefix."_poll_desc WHERE artid='0' ORDER BY pollID DESC LIMIT 1";
    $result = $db->sql_query($sql);
    $row = $db->sql_fetchrow($result);
    $pollID = $row[pollID];
    $pollTitle = $row[pollTitle];
    echo "<br>";
    OpenTable();
    echo "<center><b>"._CURRENTPOLL.":</b> $pollTitle [ <a href=\"admin.php?op=polledit&pollID=$pollID\">"._EDIT."</a> | <a href=\"admin.php?op=create\">"._ADD."</a> ]</center>";
    CloseTable();
    include ("footer.php");
}

if($admintest) {

    switch($op) {

   case "do_gfx":
   do_gfx();
   break;

   case "deleteNotice":
   deleteNotice($id, $table, $op_back);
   break;

   case "GraphicAdmin":
        GraphicAdmin();
        break;

   case "adminMain":
   adminMain();
   break;

   case "logout":
   setcookie("admin");
   $admin = "";
   include("header.php");
   OpenTable();
   echo "<center><font class=\"title\"><b>"._YOUARELOGGEDOUT."</b></font></center>";
   CloseTable();
   include("footer.php");
   break;

   case "login";
   unset($op);

   default:
   $casedir = dir("admin/case");
   while($func=$casedir->read()) {
       if(substr($func, 0, 5) == "case.") {
      include($casedir->path."/$func");
       }
   }
   closedir($casedir->handle);
   break;

   }

} else {

    switch($op) {

   case "gfx":
   gfx($random_num);
   break;
   
   default:
   login();
   break;

    }

}

?>


PHP-Nuke 7.8 admin.php file:
Code:

<?php

/************************************************************************/
/* PHP-NUKE: Web Portal System                                          */
/* ===========================                                          */
/*                                                                      */
/* Copyright (c) 2005 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

define('ADMIN_FILE', true);
if($aid AND (!isset($admin) OR empty($admin)) AND $op!='login') {
   unset($aid);
   unset($admin);
   echo "Access denied";
   die();
}
// Uncomment the following block of code after editing the next line to match your site domain
/*$domainname = "www.yourdomainname.com";
if ($_SERVER['SERVER_NAME'] != $domainname ) {
echo "Access denied";
die();
}*/


require_once("mainfile.php");
$checkurl = $_SERVER['REQUEST_URI'];
if((stripos_clone($_SERVER["QUERY_STRING"],'AddAuthor')) || (stripos_clone($_SERVER["QUERY_STRING"],'VXBkYXRlQXV0aG9y')) || (stripos_clone($_SERVER["QUERY_STRING"],'QWRkQXV0aG9y')) || (stripos_clone($_SERVER["QUERY_STRING"],'UpdateAuthor')) || (preg_match("/\?admin/", "$checkurl")) || (preg_match("/\&admin/", "$checkurl"))) {
   die("Illegal Operation");
}
get_lang(admin);

function create_first($name, $url, $email, $pwd, $user_new) {
   global $prefix, $db, $user_prefix;
   $first = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_authors"));
   if ($first == 0) {
      $pwd = md5($pwd);
      $the_adm = "God";
      $db->sql_query("INSERT INTO ".$prefix."_authors VALUES ('$name', '$the_adm', '$url', '$email', '$pwd', '0', '1', '')");
      if ($user_new == 1) {
         $user_regdate = date("M d, Y");
         $user_avatar = "gallery/blank.gif";
         $commentlimit = 4096;
         if ($url == "http://") { $url = ""; }
         $db->sql_query("INSERT INTO ".$user_prefix."_users (user_id, username, user_email, user_website, user_avatar, user_regdate, user_password, theme, commentmax, user_level, user_lang, user_dateformat) VALUES (NULL,'$name','$email','$url','$user_avatar','$user_regdate','$pwd','$Default_Theme','$commentlimit', '2', 'english','D M d, Y g:i a')");
      }
      login();
   }
}

global $admin_file;
$the_first = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_authors"));
if ($the_first == 0) {
   if (!$name) {
      include("header.php");
      title("$sitename: "._ADMINISTRATION."");
      OpenTable();
      echo "<center><b>"._NOADMINYET."</b></center><br><br>"
      ."<form action=\"".$admin_file.".php\" method=\"post\">"
      ."<table border=\"0\">"
      ."<tr><td><b>"._NICKNAME.":</b></td><td><input type=\"text\" name=\"name\" size=\"30\" maxlength=\"25\"></td></tr>"
      ."<tr><td><b>"._HOMEPAGE.":</b></td><td><input type=\"text\" name=\"url\" size=\"30\" maxlength=\"255\" value=\"http://\"></td></tr>"
      ."<tr><td><b>"._EMAIL.":</b></td><td><input type=\"text\" name=\"email\" size=\"30\" maxlength=\"255\"></td></tr>"
      ."<tr><td><b>"._PASSWORD.":</b></td><td><input type=\"password\" name=\"pwd\" size=\"11\" maxlength=\"10\"></td></tr>"
      ."<tr><td colspan=\"2\">"._CREATEUSERDATA."  <input type=\"radio\" name=\"user_new\" value=\"1\" checked>"._YES."&nbsp;&nbsp;<input type=\"radio\" name=\"user_new\" value=\"0\">"._NO."</td></tr>"
      ."<tr><td><input type=\"hidden\" name=\"fop\" value=\"create_first\">"
      ."<input type=\"submit\" value=\""._SUBMIT."\">"
      ."</td></tr></table></form>";
      CloseTable();
      include("footer.php");
   }
   switch($fop) {
      case "create_first":
      create_first($name, $url, $email, $pwd, $user_new);
      break;
   }
   die();
}

if (ereg("[^a-zA-Z0-9_-]",trim($aid))) {
   die("Begone");
}
$aid = substr("$aid", 0,25);
$pwd = substr("$pwd", 0,18);
if ((isset($aid)) && (isset($pwd)) && ($op == "login")) {
   $datekey = date("F j");
   $rcode = hexdec(md5($_SERVER[HTTP_USER_AGENT] . $sitekey . $_POST[random_num] . $datekey));
   $code = substr($rcode, 2, 6);
   if (extension_loaded("gd") AND $code != $_POST[gfx_check] AND ($gfx_chk == 1 OR $gfx_chk == 5 OR $gfx_chk == 6 OR $gfx_chk == 7)) {
      Header("Location: ".$admin_file.".php");
      die();
   }
   if($aid!="" AND $pwd!="") {
      $pwd = md5($pwd);
      $result = $db->sql_query("SELECT pwd, admlanguage FROM ".$prefix."_authors WHERE aid='$aid'");
      $row = $db->sql_fetchrow($result);
      $admlanguage = addslashes($row['admlanguage']);
      $rpwd = $row['pwd'];
      if($rpwd == $pwd) {
         $admin = base64_encode("$aid:$pwd:$admlanguage");
         setcookie("admin","$admin",time()+2592000);
         unset($op);
      }
   }
}

$admintest = 0;

if(isset($admin) && $admin != "") {
   $admin = addslashes(base64_decode($admin));
   $admin = explode(":", $admin);
   $aid = addslashes($admin[0]);
   $pwd = "$admin[1]";
   $admlanguage = "$admin[2]";
   if ($aid=="" || $pwd=="") {
      $admintest=0;
      echo "<html>\n";
      echo "<title>INTRUDER ALERT!!!</title>\n";
      echo "<body bgcolor=\"#FFFFFF\" text=\"#000000\">\n\n<br><br><br>\n\n";
      echo "<center><img src=\"images/eyes.gif\" border=\"0\"><br><br>\n";
      echo "<font face=\"Verdana\" size=\"+4\"><b>Get Out!</b></font></center>\n";
      echo "</body>\n";
      echo "</html>\n";
      exit;
   }
   $aid = substr("$aid", 0,25);
   $result2 = $db->sql_query("SELECT pwd FROM ".$prefix."_authors WHERE aid='$aid'");
   if (!$result2) {
      echo "Selection from database failed!";
      exit;
   } else {
      $row2 = $db->sql_fetchrow($result2);
      $rpwd = $row2['pwd'];
      if($rpwd == $pwd && $rpwd != "") {
         $admintest = 1;
      }
   }
}

if(!isset($op)) { $op = "adminMain"; }
$pagetitle = "- "._ADMINMENU."";

/*********************************************************/
/* Login Function                                        */
/*********************************************************/

function login() {
   global $gfx_chk, $admin_file;
   include("header.php");
   mt_srand ((double)microtime()*1000000);
   $maxran = 1000000;
   $random_num = mt_rand(0, $maxran);
   OpenTable();
   echo "<center><font class=\"title\"><b>"._ADMINLOGIN."</b></font></center>";
   CloseTable();
   echo "<br>";
   OpenTable();
   echo "<form action=\"".$admin_file.".php\" method=\"post\">"
   ."<table border=\"0\">"
   ."<tr><td>"._ADMINID."</td>"
   ."<td><input type=\"text\" NAME=\"aid\" SIZE=\"20\" MAXLENGTH=\"25\"></td></tr>"
   ."<tr><td>"._PASSWORD."</td>"
   ."<td><input type=\"password\" NAME=\"pwd\" SIZE=\"20\" MAXLENGTH=\"18\"></td></tr>";
   if (extension_loaded("gd") AND ($gfx_chk == 1 OR $gfx_chk == 5 OR $gfx_chk == 6 OR $gfx_chk == 7)) {
      echo "<tr><td colspan='2'>"._SECURITYCODE.": <img src='?gfx=gfx&random_num=$random_num' border='1' alt='"._SECURITYCODE."' title='"._SECURITYCODE."'></td></tr>"
      ."<tr><td colspan='2'>"._TYPESECCODE.": <input type=\"text\" NAME=\"gfx_check\" SIZE=\"7\" MAXLENGTH=\"6\"></td></tr>";
   }
   echo "<tr><td>"
   ."<input type=\"hidden\" NAME=\"random_num\" value=\"$random_num\">"
   ."<input type=\"hidden\" NAME=\"op\" value=\"login\">"
   ."<input type=\"submit\" VALUE=\""._LOGIN."\">"
   ."</td></tr></table>"
   ."</form>";
   CloseTable();
   include("footer.php");
}

function deleteNotice($id) {
   global $prefix, $db, $admin_file;
   $id = intval($id);
   $db->sql_query("DELETE FROM ".$prefix."_reviews_add WHERE id = '$id'");
   Header("Location: ".$admin_file.".php?op=reviews");
}

/*********************************************************/
/* Administration Menu Function                          */
/*********************************************************/

function adminmenu($url, $title, $image) {
   global $counter, $admingraphic, $Default_Theme;
   $ThemeSel = get_theme();
   if (file_exists("themes/$ThemeSel/images/admin/$image")) {
      $image = "themes/$ThemeSel/images/admin/$image";
   } else {
      $image = "images/admin/$image";
   }
   if ($admingraphic == 1) {
      $img = "<img src=\"$image\" border=\"0\" alt=\"$title\" title=\"$title\"></a><br>";
      $close = "";
   } else {
      $img = "";
      $close = "</a>";
   }
   echo "<td align=\"center\" valign=\"top\" width=\"16%\"><font class=\"content\"><a href=\"$url\">$img<b>$title</b>$close<br><br></font></td>";
   if ($counter == 5) {
      echo "</tr><tr>";
      $counter = 0;
   } else {
      $counter++;
   }
}

function GraphicAdmin() {
   global $aid, $admingraphic, $language, $admin, $prefix, $db, $counter, $admin_file;
   $newsubs = $db->sql_numrows($db->sql_query("SELECT qid FROM ".$prefix."_queue"));
   $row = $db->sql_fetchrow($db->sql_query("SELECT radminsuper FROM ".$prefix."_authors WHERE aid='$aid'"));
   $radminsuper = intval($row['radminsuper']);
   if ($radminsuper == 1) {
      OpenTable();
      echo "<center><a href=\"".$admin_file.".php\"><font class='title'>"._ADMINMENU."</font></a>";
      echo "<br><br>";
      echo"<table border=\"0\" width=\"100%\" cellspacing=\"1\"><tr>";
      $linksdir = dir("admin/links");
      while($func=$linksdir->read()) {
         if(substr($func, 0, 6) == "links.") {
            $menulist .= "$func ";
         }
      }
      closedir($linksdir->handle);
      $menulist = explode(" ", $menulist);
      sort($menulist);
      for ($i=0; $i < sizeof($menulist); $i++) {
         if($menulist[$i]!="") {
            $sucounter = 0;
            include($linksdir->path."/$menulist[$i]");
         }
      }
      adminmenu("".$admin_file.".php?op=logout", ""._ADMINLOGOUT."", "logout.gif");
      echo"</tr></table></center>";
      $counter = "";
      CloseTable();
      echo "<br>";
   }
   OpenTable();
   echo "<center><a href=\"".$admin_file.".php\"><font class='title'>"._MODULESADMIN."</font></a>";
   echo "<br><br>";
   echo"<table border=\"0\" width=\"100%\" cellspacing=\"1\"><tr>";
   $handle=opendir('modules');
   while ($file = readdir($handle)) {
      if ( (!ereg("[.]",$file)) ) {
         $modlist .= "$file ";
      }
   }
   closedir($handle);
   $modlist = explode(" ", $modlist);
   sort($modlist);
   for ($i=0; $i < sizeof($modlist); $i++) {
      if($modlist[$i] != "") {
         $row = $db->sql_fetchrow($db->sql_query("SELECT mid from " . $prefix . "_modules where title='$modlist[$i]'"));
         $mid = intval($row['mid']);
         if ($mid == "") {
            $db->sql_query("insert into " . $prefix . "_modules values (NULL, '$modlist[$i]', '$modlist[$i]', '0', '0', '1', '0', '')");
         }
      }
   }
   $result = $db->sql_query("SELECT title, admins FROM ".$prefix."_modules ORDER BY title ASC");
   $row2 = $db->sql_fetchrow($db->sql_query("SELECT name FROM ".$prefix."_authors WHERE aid='$aid'"));
   while ($row = $db->sql_fetchrow($result)) {
      $admins = explode(",", $row[admins]);
      $auth_user = 0;
      for ($i=0; $i < sizeof($admins); $i++) {
         if ($row2[name] == "$admins[$i]") {
            $auth_user = 1;
         }
      }
      if ($radminsuper == 1 || $auth_user == 1) {
         if (file_exists("modules/$row[title]/admin/index.php") AND file_exists("modules/$row[title]/admin/links.php") AND file_exists("modules/$row[title]/admin/case.php")) {
            include("modules/$row[title]/admin/links.php");
         }
      }
   }
   adminmenu("".$admin_file.".php?op=logout", ""._ADMINLOGOUT."", "logout.gif");
   echo"</tr></table></center>";
   CloseTable();
   echo "<br>";
}

/*********************************************************/
/* Administration Main Function                          */
/*********************************************************/

function adminMain() {
   global $language, $admin, $aid, $prefix, $file, $db, $sitename, $user_prefix, $admin_file;
   include("header.php");
   $dummy = 0;
   $Today = getdate();
   $month = $Today['month'];
   $mday = $Today['mday'];
   $year = $Today['year'];
   $pmonth = $Today['month'];
   $pmday = $Today['mday'];
   $pmday = $mday-1;
   $pyear = $Today['year'];
   if ($pmonth=="January") { $pmonth=1; } else
   if ($pmonth=="February") { $pmonth=2; } else
   if ($pmonth=="March") { $pmonth=3; } else
   if ($pmonth=="April") { $pmonth=4; } else
   if ($pmonth=="May") { $pmonth=5; } else
   if ($pmonth=="June") { $pmonth=6; } else
   if ($pmonth=="July") { $pmonth=7; } else
   if ($pmonth=="August") { $pmonth=8; } else
   if ($pmonth=="September") { $pmonth=9; } else
   if ($pmonth=="October") { $pmonth=10; } else
   if ($pmonth=="November") { $pmonth=11; } else
   if ($pmonth=="December") { $pmonth=12; };
   $test = mktime (0,0,0,$pmonth,$pmday,$pyear,1);
   $curDate2 = "%".$month[0].$month[1].$month[2]."%".$mday."%".$year."%";
   $preday = strftime ("%d",$test);
   $premonth = strftime ("%B",$test);
   $preyear = strftime ("%Y",$test);
   $curDateP = "%".$premonth[0].$premonth[1].$premonth[2]."%".$preday."%".$preyear."%";
   GraphicAdmin();
   $aid = substr("$aid", 0,25);
   $row = $db->sql_fetchrow($db->sql_query("SELECT radminsuper, admlanguage FROM ".$prefix."_authors WHERE aid='$aid'"));
   $radminsuper = intval($row['radminsuper']);
   $admlanguage = $row['admlanguage'];
   $result = $db->sql_query("SELECT admins FROM ".$prefix."_modules WHERE title='News'");
   $row2 = $db->sql_fetchrow($db->sql_query("SELECT name FROM ".$prefix."_authors WHERE aid='$aid'"));
   while ($row = $db->sql_fetchrow($result)) {
      $admins = explode(",", $row[admins]);
      $auth_user = 0;
      for ($i=0; $i < sizeof($admins); $i++) {
         if ($row2[name] == "$admins[$i]") {
            $auth_user = 1;
         }
      }
      if ($auth_user == 1) {
         $radminarticle = 1;
      }
   }
   if ($admlanguage != "" ) {
      $queryalang = "WHERE alanguage='$admlanguage' ";
   } else {
      $queryalang = "";
   }
   $row3 = $db->sql_fetchrow($db->sql_query("SELECT main_module from ".$prefix."_main"));
   $main_module = $row3['main_module'];
   OpenTable();
   echo "<center><b>$sitename: "._DEFHOMEMODULE."</b><br><br>"
   .""._MODULEINHOME." <b>$main_module</b><br>[ <a href=\"".$admin_file.".php?op=modules\">"._CHANGE."</a> ]</center>";
   CloseTable();
   echo "<br>";
   OpenTable();
   $guest_online_num = $db->sql_numrows($db->sql_query("SELECT uname FROM ".$prefix."_session WHERE guest='1'"));
   $member_online_num = $db->sql_numrows($db->sql_query("SELECT uname FROM ".$prefix."_session WHERE guest='0'"));
   $who_online_num = $guest_online_num + $member_online_num;
   $who_online = "<center><font class=\"option\">"._WHOSONLINE."</font><br><br><font class=\"content\">"._CURRENTLY." $guest_online_num "._GUESTS." $member_online_num "._MEMBERS."<br>";
   $row3 = $db->sql_fetchrow($db->sql_query("SELECT COUNT(user_id) AS userCount from $user_prefix"._users." WHERE user_regdate LIKE '$curDate2'"));
   $userCount = $row3['userCount'];
   $row4 = $db->sql_fetchrow($db->sql_query("SELECT COUNT(user_id) AS userCount FROM $user_prefix"._users." WHERE user_regdate LIKE '$curDateP'"));
   $userCount2 = $row4['userCount'];
   echo "<center>$who_online<br>"
      .""._BTD.": <b>$userCount</b> - "._BYD.": <b>$userCount2</b></center>";
   CloseTable();
   if (is_active("News")) {
      echo "<br>";
      OpenTable();
      echo "<center><b>"._AUTOMATEDARTICLES."</b></center><br>";
      $count = 0;
      $result5 = $db->sql_query("SELECT anid, aid, title, time, alanguage FROM ".$prefix."_autonews $queryalang ORDER BY time ASC");
      while ($row5 = $db->sql_fetchrow($result5)) {
         $anid = intval($row5['anid']);
         $aid = $row5['aid'];
         $said = substr("$aid", 0,25);
         $title = $row5['title'];
         $time = $row5['time'];
         $alanguage = $row5['alanguage'];
         if ($alanguage == "") {
            $alanguage = ""._ALL."";
         }
         if ($anid != "") {
            if ($count == 0) {
               echo "<table border=\"1\" width=\"100%\">";
               $count = 1;
            }
            $time = ereg_replace(" ", "@", $time);
            if (($radminarticle==1) OR ($radminsuper==1)) {
               if (($radminarticle==1) AND ($aid == $said) OR ($radminsuper==1)) {
                  echo "<tr><td nowrap>&nbsp;<a href=\"".$admin_file.".php?op=autoEdit&amp;anid=$anid\"><img src=\"images/edit.gif\" alt=\""._EDIT."\" title=\""._EDIT."\" border=\"0\" width=\"17\" height=\"17\"></a>  <a href=\"".$admin_file.".php?op=autoDelete&amp;anid=$anid\"><img src=\"images/delete.gif\" alt=\""._DELETE."\" title=\""._DELETE."\" border=\"0\" width=\"17\" height=\"17\"></a>&nbsp;</td><td width=\"100%\">&nbsp;$title&nbsp;</td><td align=\"center\">&nbsp;$alanguage&nbsp;</td><td nowrap>&nbsp;$time&nbsp;</td></tr>"; /* Multilingual Code : added column to display language */
               } else {
                  echo "<tr><td>&nbsp;("._NOFUNCTIONS.")&nbsp;</td><td width=\"100%\">&nbsp;$title&nbsp;</td><td align=\"center\">&nbsp;$alanguage&nbsp;</td><td nowrap>&nbsp;$time&nbsp;</td></tr>"; /* Multilingual Code : added column to display language */
               }
            } else {
               echo "<tr><td width=\"100%\">&nbsp;$title&nbsp;</td><td align=\"center\">&nbsp;$alanguage&nbsp;</td><td nowrap>&nbsp;$time&nbsp;</td></tr>"; /* Multilingual Code : added column to display language */
            }
         }
      }
      if (($anid == "") AND ($count == 0)) {
         echo "<center><i>"._NOAUTOARTICLES."</i></center>";
      }
      if ($count == 1) {
         echo "</table>";
      }
      CloseTable();
      echo "<br>";
      OpenTable();
      echo "<center><b>"._LAST." 20 "._ARTICLES."</b></center><br>";
      $result6 = $db->sql_query("SELECT sid, aid, title, time, topic, informant, alanguage FROM ".$prefix."_stories $queryalang ORDER BY time DESC LIMIT 0,20");
      echo "<center><table border=\"1\" width=\"100%\" bgcolor=\"$bgcolor1\">";
      while ($row6 = $db->sql_fetchrow($result6)) {
         $sid = intval($row6['sid']);
         $aid = $row6['aid'];
         $said = substr("$aid", 0,25);
         $title = $row6['title'];
         $time = $row6['time'];
         $topic = $row6['topic'];
         $informant = $row6['informant'];
         $alanguage = $row6['alanguage'];
         $row7 = $db->sql_fetchrow($db->sql_query("SELECT topicname FROM ".$prefix."_topics WHERE topicid='$topic'"));
         $topicname = $row7['topicname'];
         if ($alanguage == "") {
            $alanguage = ""._ALL."";
         }
         formatTimestamp($time);
         echo "<tr><td align=\"right\"><b>$sid</b>"
         ."</td><td align=\"left\" width=\"100%\"><a href=\"modules.php?name=News&amp;file=article&amp;sid=$sid\">$title</a>"
         ."</td><td align=\"center\">$alanguage"
         ."</td><td align=\"right\">$topicname";
         if ($radminarticle == 1 OR $radminsuper == 1) {
            if (($radminarticle==1) AND ($aid == $said) OR ($radminsuper==1)) {
               echo "</td><td align=\"right\" nowrap>&nbsp;<a href=\"".$admin_file.".php?op=EditStory&amp;sid=$sid\"><img src=\"images/edit.gif\" alt=\""._EDIT."\" title=\""._EDIT."\" border=\"0\" width=\"17\" height=\"17\"></a>  <a href=\"".$admin_file.".php?op=RemoveStory&amp;sid=$sid\"><img src=\"images/delete.gif\" alt=\""._DELETE."\" title=\""._DELETE."\" border=\"0\" width=\"17\" height=\"17\"></a>&nbsp;"
               ."</td></tr>";
            } else {
               echo "</td><td align=\"right\" nowrap><font class=\"content\"><i>("._NOFUNCTIONS.")</i></font>"
               ."</td></tr>";
            }
         } else {
            echo "</td></tr>";
         }
      }
      echo "</table>";
      if (($radminarticle==1) OR ($radminsuper==1)) {
         echo "<center>"
         ."<form action=\"".$admin_file.".php\" method=\"post\">"
         .""._STORYID.": <input type=\"text\" NAME=\"sid\" SIZE=\"10\">"
         ."<select name=\"op\">"
         ."<option value=\"EditStory\" SELECTED>"._EDIT."</option>"
         ."<option value=\"RemoveStory\">"._DELETE."</option>"
         ."</select>"
         ."<input type=\"submit\" value=\""._GO."\">"
         ."</form></center>";
      }
      CloseTable();
   }
   $row8 = $db->sql_fetchrow($db->sql_query("SELECT pollID, pollTitle FROM ".$prefix."_poll_desc WHERE artid='0' ORDER BY pollID DESC LIMIT 1"));
   $pollID = intval($row8['pollID']);
   $pollTitle = $row8['pollTitle'];
   if (is_active("Surveys")) {
      echo "<br>";
      OpenTable();
      echo "<center><b>"._CURRENTPOLL.":</b> $pollTitle  <a href=\"".$admin_file.".php?op=create\"><img src=\"images/add.gif\" alt=\""._ADD."\" title=\""._ADD."\" border=\"0\" width=\"17\" height=\"17\"></a>  <a href=\"".$admin_file.".php?op=polledit&amp;pollID=$pollID\"><img src=\"images/edit.gif\" alt=\""._EDIT."\" title=\""._EDIT."\" border=\"0\" width=\"17\" height=\"17\"></a></center>";
      CloseTable();
   }
   include("footer.php");
}

if($admintest) {

   switch($op) {

      case "do_gfx":
      do_gfx();
      break;

      case "deleteNotice":
      deleteNotice($id);
      break;

      case "GraphicAdmin":
      GraphicAdmin();
      break;

      case "adminMain":
      adminMain();
      break;

      case "logout":
      setcookie("admin", false);
      $admin = "";
      include("header.php");
      OpenTable();
      echo "<center><font class=\"title\"><b>"._YOUARELOGGEDOUT."</b></font></center>";
      CloseTable();
      echo "<META HTTP-EQUIV=\"refresh\" content=\"3;URL=".$admin_file.".php\">";
      include("footer.php");
      break;

      case "login";
      unset($op);

      default:
      if (!is_admin($admin)) {
         login();
      }
      $casedir = dir("admin/case");
      while($func=$casedir->read()) {
         if(substr($func, 0, 5) == "case.") {
            include($casedir->path."/$func");
         }
      }
      closedir($casedir->handle);
      $result = $db->sql_query("SELECT title FROM ".$prefix."_modules ORDER BY title ASC");
      while ($row = $db->sql_fetchrow($result)) {
         if (file_exists("modules/$row[title]/admin/index.php") AND file_exists("modules/$row[title]/admin/links.php") AND file_exists("modules/$row[title]/admin/case.php")) {
            include("modules/$row[title]/admin/case.php");
         }
      }
      break;

   }

} else {

   switch($op) {

      default:
      login();
      break;

   }

}

?>


Thanks for any help...
-Jdawgg
Find all posts by jdawgg2020jView user's profileSend private message
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.394 Seconds - 244 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::