DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   PHP (http://www.daniweb.com/forums/forum17.html)
-   -   parse error (http://www.daniweb.com/forums/thread128858.html)

shariana Jun 11th, 2008 12:05 pm
parse error
 
Can anyone help me? Obviously, I do not know what I am doing!!! I am getting this error: Parse error: syntax error, unexpected ';' in /home/wbritt/public_html/ADMIN/index.php on line 341




<?php
include("login_config.php");
include_once("Utils.php");
if(isset($doExport)||(isset($category)&&$category=="exit")||isset($Export)){
        ob_start();
}

if(stristr($_SERVER['HTTP_USER_AGENT'],"MSIE"))
{
        $IE=true;
}
else
{
        $IE=false;
}

$AC=true;

include("security.php");


$lArray=DataArray("admin_users","username='$AuthUserName'");

if(isset($lng)){
        $LANGUAGE=$arrSupportedLanguages[$lng][1];
        $LANGUAGE2=$arrSupportedLanguages[$lng][1];
       
                SQLUpdate_SingleValue(
                                "admin_users",
                                "username",
                                "'".$AuthUserName."'",
                                "language",
                                $LANGUAGE
                        );
}
else{
       
        $LANGUAGE=strtolower($lArray["language"]);
        $LANGUAGE2=strtolower($lArray["language"]);
}

if(!isset($LANGUAGE)||strlen($LANGUAGE)!=2){
        $LANGUAGE="en";
        $LANGUAGE2="en";
}


$strJobCategories = "";

if(file_exists('../include/categories_'.strtolower($LANGUAGE2).'.php'))
{
        $lines = file('../include/categories_'.strtolower($LANGUAGE2).'.php');
}
else
{
        $lines = file('../include/categories_en.php');
}

foreach ($lines as $line_num => $line)
{
        if(trim($line) != "")
        {
                $strJobCategories .= $line;
        }
}

include("../include/ui_texts_en.php");       
include("texts_".$LANGUAGE.".php");
include("../include/jobs_config.php");

if(isset($LANGUAGE2)&&strlen($LANGUAGE2)==2)
{
        include("config_".$LANGUAGE2.".php");

}
else{

        include("config_en.php");
}

$HISTORY="";
$iRTables=0;

$iKEY="AZ8007";

EnsureParams();

if(get_param("action") == "exit")
{
                                SQLQuery("
                                        INSERT INTO ".$DBprefix."login_log(username,ip,date,action,cookie)
                                        VALUES('".$AuthUserName."','".$_SERVER['REMOTE_ADDR']."','".time()."','logout','')
                                ");
                                $HISTORY=$USER_EXITED;
                                setcookie("Auth","",time()-1);
                                echo "<script>document.location.href='login.php';</script>";                                       
}


$arrMonths=array("","January","February","March","April","May","June","July","August","September","October","November","December");


if(isset($doExport)){
                ExportTable($strTable,str_replace("\\'","'",$strSql),$FileType,$FileName);
                exit();
}

       
if(!isset($category)){
        $category="home";
}


$arrPermissions=array("PermissionsArray");
$Permissions=DataTable("admin_users_permissions","");

while($oPermission=mysql_fetch_array($Permissions))
{
        array_push($arrPermissions, $oPermission["permission"]);
}

if(!checkForSpecialSymbols($category)){
        die("SECURITY VIOLATION DETECTED");
}

$vr1 = ($category."_oLinkTexts");               
$vr2 = ($category."_oLinkActions");       
$vr3 = ($category."_oLinkDescriptions");       

if(!isset($$vr1))
{
        die("<script>document.location.href=\"index.php\";</script>");
}

$evLinkTexts = $$vr1;
$evLinkActions = $$vr2;
$evLinkDescriptions = $$vr3;

if(!isset($folder)&&!isset($action)){
        $action=$evLinkActions[0];
}


$IPage="";

if(isset($action)){
        $IPage=$action;
}
else
if(isset($folder)){
        $IPage=$folder;
}
else{
        die("ACCESS DENIED");
}

$ICurrentPage="@".$AuthGroup."@".$category."@".$IPage;

       
               
if($AuthGroup=="Administrators"){
               
}
else
if(array_search($ICurrentPage,$arrPermissions,false)){
                       
}
else{

        foreach($arrPermissions as $oPermission){
       
                if(strstr($oPermission,("@".$AuthGroup."@".$category))){
                               
                        $arrOPage=explode("@",$oPermission);
                       
                        die("<script>document.location.href='index.php?category=".$arrOPage[2]."&action=".$arrOPage[3]."';</script>");
                       
                        break;
                }
               
        }
       
        die("ACCESS DENIED!");
}

$iLastSlogId=SQLInsert("bo_slog",
                                array("ip","args","uid","date"),
                                array($_SERVER["REMOTE_ADDR"],serialize($_REQUEST),$AuthUserName,time())
 );
 
 if(isset($action)){
        $IAction=$action;
 }
 else{
        $IAction=$folder;
 }

$DN = "1";
 
if($lArray["fax"]=="2")
{
        $DN = "2";
}

?>
<html>
<head>
<title><?php echo($ProductName);?></title>
<link href="include/new_style2.css" rel="stylesheet" type="text/css">
        <script src="include/ContextMenu.js"></script>
</head>
<body oncontextmenu="return false" leftmargin="0" topmargin="0"  bgcolor="#ffffff" marginheight="0" marginwidth="0">

<?php
include("include/help_tips.php");
?>

       
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody>
          <tr>
            <td align="center" background="images2/01.png" valign="top"><div align="center">
       
       
        <table id="Table_01" align="center" border="0" cellpadding="0" cellspacing="0" height="54" width="800">
      <tbody>
          <tr>
        <td colspan="3" height="19" align=center>
               
                                                        <table border="0" width="785" cellspacing="0" bgcolor=#f5f5f5 height=19>
                                                        <tr>
                                                               
                                                                <td align=left valign=bottom width=585>
                                                       
                                                                <!--
                                                                &nbsp;<?php echo $M_WELCOME;?> <?php echo strtoupper($AuthUserName);?>, <?php echo $M_TODAY_IS;?> <?php echo date("F j, Y, g:i a");?>
                                                                -->
                                                                </td>
                                                                <td align=right valign=bottom width=200>
                                                               
                                                                       
                                                                <?php
                                                                if($AuthUserName == "administrator")
                                                                {
                                                                ?>
                                                                <a href="../index.php" target=_blank >[open the website]</a>
                                                                <?php
                                                                }
                                                                ?>
                                                               
                                                                &nbsp;&nbsp;&nbsp;&nbsp;<a href="index.php?category=exit&action=exit" >[<?php echo strtolower($M_LOGOUT);?>]</a>&nbsp;&nbsp;
                                                                       
                                                                       
                                                                </td>
                                                                       
                                                        </tr>
                                                </table>
               
                </td>
      </tr>
      <tr >
        <td height="34" valign=top align=right><img src="images2/44.png" alt="" height="34" width="17"></td>
                <td background="images2/top_table_bg.png"><?php include("menus/main.php"); ?></td>
        <td width=23><img src="images2/13.png" alt="" height="34" width="23"></td>
      </tr>
         
      <tr>
        <td colspan="3" height="20"><img src="images2/14.png" alt="" height="20" width="800"></td>
      </tr>
     
    </tbody>
       
        </table>
       
       
        </td>
  </tr>
 
  <tr class="full" bgcolor="white" height="440">
    <td align=center valign=top>     

        <TABLE  WIDTH="800" CELLPADDING="0" CELLSPACING="0">
                                                                                                <TR>
                                                                                                        <TD valign=top>

<?php include_once("menus/navigation.php");?>

                                                                                                        </TD>
                                                                                                </TR>
                                                                                                <tr>
                                                                                                        <td align=center>
                                                                                                        <img src="images2/contact_header.gif" width="770" height="6" alt="" border="0">
                                                                                                        </td>
                                                                                                </tr>
                                                                                                <TR>
                                                                                                        <TD align=center  WIDTH ="800" BGCOLOR="#FFFFFF" style="text-align:center">
                                                                                                                <CENTER>
                                                                                                                <br>
       

<?php
        if(isset($folder)){
                include($category."/".$folder."_".$page.".php");
        }
        else{
                include($category."/".$action.".php");
        }
?>

       
        </CENTER>
                                                                                                               
                                                                                                        <br>
                                                                                                        </TD>
                                                                                                </TR>
                                                                               
                                                                                        </TABLE>
       
        <br><br>
       
       
        </td>
  </tr>
  <tr>
    <td align="center">     
       
       
       
                <table class="Footer" border="0" cellpadding="0" cellspacing="0" width=800>
      <tbody>
        <tr>
          <td bgcolor="#e6e6e6" height="29" valign="top" width="5"><img alt="" src="images2/item3b.gif" align="absbottom" width=5 border="0" hspace="0"></td>

                      <td bgcolor="#e6e6e6" height="29" valign="middle" width="354">
                            <p>





                                        &nbsp;&nbsp;<b><?php echo?></b>&nbsp;</span>
                                </p>
                        </td>
          <td bgcolor="#e6e6e6" height="29" valign="center" width="354">
            <p class="style6" align="center">
                                                <a> PlasticSurgeryCareers.com & Cosmetic SurgeryCareers.com Admin Page
<style="position:relative;top:3px">
                                                       
                                                </a>
                          </p>
          </td>
                 
       
          <td bgcolor="#ffffff" height="29" valign="top" width="5">
            <p><img alt="" src="images2/item3a1.gif"align="absbottom" border="0" hspace="0"></p>
          </td>
        </tr>
      </tbody>
    </table>
       
       
       
    <br>
       
        </td>
  </tr>
</tbody>
</table>
</body>

</html>

<?php
if(isset($doExport)||(isset($category)&&$category=="exit")||isset($Export)){
        ob_end_flush();
}
?>

pritaeas Jun 12th, 2008 6:40 am
Re: parse error
 
On line 341 :

<?php echo ?>

This statement is incomplete. Remove it, or put something after the echo.

shariana Jun 12th, 2008 11:36 am
Re: parse error
 
Thank you! Thank you! Problem solved.


All times are GMT -4. The time now is 2:23 am.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC