接收common.inc的PHP解析错误,但include命令(错误中指出)不在文件中

接收common.inc的PHP解析错误,但include命令(错误中指出)不在文件中,php,drupal,php-include,Php,Drupal,Php Include,我们的网站由外部托管。它使用的是Drupal(非常过时,高层不愿意升级)。我们有几个页面连接到不同服务器(由不同公司托管)上的数据库,以显示调度信息 最近,托管我们Drupal站点的公司升级了PHP,它破坏了我们访问数据库的所有页面。经过多次争论,我相信我已经纠正了连接问题,但现在我得到了以下错误: 解析错误:语法错误,第1行代码/imedia/users/sc drupal/htdocs/includes/common.inc(1695):eval()中出现意外的“include”(T_inc

我们的网站由外部托管。它使用的是Drupal(非常过时,高层不愿意升级)。我们有几个页面连接到不同服务器(由不同公司托管)上的数据库,以显示调度信息

最近,托管我们Drupal站点的公司升级了PHP,它破坏了我们访问数据库的所有页面。经过多次争论,我相信我已经纠正了连接问题,但现在我得到了以下错误:

解析错误:语法错误,第1行代码/imedia/users/sc drupal/htdocs/includes/common.inc(1695):eval()中出现意外的“include”(T_include)

下面是common.inc文件的前几行

line 1:<?php 
line 2:// $Id: common.inc,v 1.756.2.96 2010/08/11 20:35:47 goba Exp $
line 3:
line 4:/**
line 5: * @file
line 6: * Common functions that many Drupal modules will need to reference.
line 7: *
line 8: * The functions that are critical and need to be available even when serving
line 9: * a cached page are instead located in bootstrap.inc.
line 10:*/

line 11:/**
line 12: * Return status for saving which involved creating a new item.
line 13: */
line 14: define('SAVED_NEW', 1);
...
研究 不是答案的事情

在做其他研究时,我发现如何使用
php-l
检查文件的语法。在common.inc和页面主体的php文件上尝试此操作会导致每个页面出现
“无语法错误”

~

为什么没有回答这个问题:

我在发帖前看了这篇文章。好文章。问题是

  • 所讨论的文件不仅仅是创建的,它以前工作得很好

  • 除非我已经尽了最大努力,并且没有遗漏或错误的语法

  • 文件中的任何位置都不使用Include!虽然它写在注释中,并且有对include目录的引用,但不使用include指令!是的,我已经检查过了,以确保评论是评论,并且没有在某个地方出现包含

  • ~

    为什么没有回答这个问题:

    同样,include不是作为命令出现在文件中。迪尔也不是。所有的分号都在那里,所有的引文都在那里。此文件在升级之前有效。该文件适用于没有PHP代码的页面。这个答案不能回答我的问题


    你真的希望有人读这些吗?乌穆德:不,我“希望”比我更有经验的人能为我指明解决这个问题的方向。我加入了代码,这样我就不会被那些浏览问题然后认为他们在帮助但回答“Post code”的人要求加入代码zod:因为那篇文章在一行上指出了错误,而我的却没有指出,我不确定这怎么会是一个重复的帖子。
    common.inc
    第1695行是什么?在
    common.inc
    文件中,第一个
    include
    调用是什么?试着切换到原始drupal主题,看看这是否还在发生。若并没有,问题就出在你们的主题上。如果是,尝试转动模块。如果你打开你添加的所有模块,但它仍然在运行,那么你的安装很可能已经损坏-重新安装。它也可能是错误的PHP版本…你真的希望有人阅读所有这些吗?乌穆德:不,我“希望”比我更有经验的人会告诉我如何解决这个问题。我加入了代码,这样我就不会被那些浏览问题然后认为他们在帮助但回答“Post code”的人要求加入代码zod:因为那篇文章在一行上指出了错误,而我的却没有指出,我不确定这怎么会是一个重复的帖子。
    common.inc
    第1695行是什么?在
    common.inc
    文件中,第一个
    include
    调用是什么?试着切换到原始drupal主题,看看这是否还在发生。若并没有,问题就出在你们的主题上。如果是,尝试转动模块。如果你打开你添加的所有模块,但它仍然在运行,那么你的安装很可能已经损坏-重新安装。它也可能是错误的PHP版本。。。
    <?php
    $page_name = substr($_SERVER["REQUEST_URI"],0,strpos($_SERVER["REQUEST_URI"],"?"));
    
     // START TIME when file loads
    $start_time = getmicrotime();
    
    /***************************************************
    SCRUB USER SUBMITTED DATA
    Do it once here, rather than multiple times in each of the included files
    ***************************************************/
    if(preg_match("/\w/",$_GET[searchInput]))
    {
      $_GET[searchInput]=trim($_GET[searchInput]);
    
    }
    
    $_GET[search_type] = strip_tags($_GET[search_type]);
    
    foreach($_GET as $gk=>$gv) // 'gk' == 'get key', 'gv'== 'get value'
    {
      //echo "$gk $gv<br>";
      $_GET[$gk] = addslashes(strip_tags($gv));
    }
    
    $startMoAry= explode(" " , $_GET[startMonth]);
    $endMoAry= explode(" " , $_GET[endMonth]);
    $start_ts=strtotime($startMoAry[0]."".$_GET[startDate].",".$startMoAry[1]);
    
    $end_ts=strtotime($endMoAry[0]." ".$_GET[endDate].",".$endMoAry[1]); 
    // add 23hrs, 59 seconds, to make day end at 11:59pm, rather than 12am
    $end_ts=$end_ts+86399;
    
    include("session_tracker.inc.php");
    /***************************************************
    Connect to database
    ***************************************************/
    include("mysql_access_db.php");
    
    /***************************************************
    Get oldest/newest record date from DB
    ***************************************************/
    $query = "SELECT CalendarDate
    FROM Calendar";
        
    $result = mysql_query ($query);
    
    while($row = mysql_fetch_assoc($result))
    {
    // convert to timestamp
    $cal_date_timestamp = strtotime($row[CalendarDate]);
    
      if(empty($oldest_record))
      {
         $oldest_record = strtotime($row[CalendarDate]);
      }
    
      if($cal_date_timestamp < $oldest_record)
      {
        $oldest_record = $cal_date_timestamp;
      }
    
      if(empty($newest_record))
      {
        $newest_record = strtotime($row[CalendarDate]);
      }
    
      if($cal_date_timestamp > $newest_record)
      {
        $newest_record = $cal_date_timestamp;
      }
    
      // build array of all values
      $cal_date_timestamp_array[] = $cal_date_timestamp;
    }
    
     $cal_date_timestamp_array =array_unique($cal_date_timestamp_array);
     sort($cal_date_timestamp_array);
     // unique timestamps
     foreach($cal_date_timestamp_array as $tk=>$tv)
     {
       // echo "$tk $tv<br>";
       $cal_dt_ary[]= date ( "D, M d, Y", $tv);
       $cal_moYr_ary[]= date ( "F Y", $tv);
       $cal_mo_ary[]= date ( "F", $tv);
       $cal_yr_ary[]= date ( "Y", $tv);
     }
    
     // unique full dates
     $cal_dt_ary =array_unique($cal_dt_ary);
     foreach($cal_dt_ary as $tk1=>$tv1)
     {
       // echo "$tk1 $tv1<br>";
     }
     // unique months
     $cal_mo_ary =array_unique($cal_mo_ary);
     foreach($cal_mo_ary as $tk2=>$tv2)
     {
       //echo "$tk2 $tv2<br>";
     }
     // unique years
     $cal_yr_ary =array_unique($cal_yr_ary);
     foreach($cal_yr_ary as $tk3=>$tv3)
     {
       //echo "$tk3 $tv3<br>";
     }
      // unique month/year combinations
      $cal_moYr_ary = array_unique($cal_moYr_ary);
     foreach($cal_moYr_ary as $tk4=>$tv4)
     {
       //echo "$tk4 $tv4<br>";
     }
    
    $oldest_record = array_shift($cal_date_timestamp_array);
    
    $newest_record = array_pop($cal_date_timestamp_array);
    // echo date ( "D, M d, Y", $newest_record);
    
    /***************************************************
    establish start of date range
    If start_ts is not present, use oldest record in db as start date;
    otherwise, use GET value for start date
    ***************************************************/
    //$timestamp_minus30 = strtotime("-30 days");
    if(empty($start_ts))
    {
      $timestamp_minus30 = $oldest_record;
    }
    elseif(!empty($start_ts))
    {
      $timestamp_minus30 = $start_ts;
    }
    
    /***************************************************
    establish end of date range
    ***************************************************/
    //$timestamp = time();
    $timestamp = $newest_record;
    
    //echo "Start date: ";
    //$start_month_m=date ("m" , $oldest_record); // month as numeral with leading zero
    
    if(empty($start_ts))
    {
      $start_month_m=date ("m" , $oldest_record); // month as numeral with leading zero
    }
    elseif(!empty($start_ts))
    {
      $start_month_m=date ("m" , $start_ts); // month as numeral with leading zero
    }
    
    $start_month_n=date ("n" , $oldest_record); // month as numeral without leading zero
    $start_month_F=date ("F" , $oldest_record); // month as lonf text string (e.g. 'January')
    $start_day_d=date ("d", $oldest_record);
    $start_year_Y=date ("Y" , $oldest_record);
    
    $end_month_m=date ("m" , $newest_record);
    $end_month_n=date ("n" , $newest_record);
    
    $end_month_F=date ("F" , $newest_record);
    $end_day_d=date ("d", $newest_record);
    $end_year_Y=date ("Y" , $newest_record);
    
    // names of months
    $month_array[]= "January";
    $month_array[]= "February";
    $month_array[]= "March";
    $month_array[]= "April";
    $month_array[]= "May";
    $month_array[]= "June";
    $month_array[]= "July";
    $month_array[]= "August";
    $month_array[]= "September";
    $month_array[]= "October";
    $month_array[]= "November";
    $month_array[]= "December";
    
    // START date
    // February;check for leap year
    
    if($start_month_m==2)
    {
      if(date("L",$newest_record) == 1)
      {
        $start_date_end = 29;
      }
      elseif(date("L",$newest_record) == 0)
      {
        $start_date_end = 28;
      }
    }
    
    // months with 30 days
    elseif($start_month_m==4 || $start_month_m==6 || $start_month_m==9 || $start_month_m==11)
    {
      $start_date_end = 30;
    }
    
    // months with 31 days
    elseif($start_month_n==1 || $start_month_n==3 || $start_month_n==5 || $start_month_n==7 || $start_month_n==8 || $start_month_n==10 || $start_month_n==12)
    {
      $start_date_end = 31;
    }
    
    $start_date_begin = 1;
    $end_date_begin = 1;
    // END date
    // February;check for leap year
    if($end_month_n==2)
    {
      if(date("L",$newest_record) == 1)
      {
        $end_date_end = 29;
      }
      elseif(date("L",$newest_record) == 0)
      {
        $end_date_end = 28;
      }
    }
    
    // months with 30 days
    elseif($end_month_n==4 || $end_month_n==6 || $end_month_n==9 || $end_month_n==11)
    {
      $end_date_end = 30;
    }
    
    // months with 31 days
    elseif($end_month_n==1 || $end_month_n==3 || $end_month_n==5 || $end_month_n==7 || $end_month_n==8 || $end_month_n==10 || $end_month_n==12)
    {
      $end_date_end = 31;
    }
    
    else
    {
      $end_date_end = "";
    }
    
    /***************************************************
    Scrub user-submitted data
    NOTE: Since it's a GET function ALL data can be submitted by the user
    in the location window
    ***************************************************/
    if($_GET)
    {
    
      while($_GET[searchInput] != strip_tags($_GET[searchInput])) 
      {
        $_GET[searchInput] = strip_tags($_GET[searchInput]);
      }
    }
    ?>
    <form name="formSearchMeetings"  action="<?php echo $page_name; ?>" method="GET" >
    <input type="hidden" name="v" value="<?php echo $_GET[v];?>">
    <table width="100%" border="0" cellspacing="0" cellpadding="0" id="meetingcaltable">
    <tr>
    <td colspan="9" align="left" valign="top"><span class="textHeadlines">
    Appointments</span>  from <?php echo $start_month_F . " " .  $start_day_d . ", " .  $start_year_Y . " to " . $end_month_F . " " .  $end_day_d . ", " .  $end_year_Y;?> .
        </td>
        </tr>
        <?php
    /***************************************************
    Display 'Detail' search buttons ('New Search' and 'Previous Search')
    ***************************************************/
    if(!empty($_GET[vtype]) && $_GET[vtype]=="detail")
    { 
     include "display_detail_search.inc.php";
    }
    else
    {
    // determine which, if any, radio button is selected
    if($_GET[search_type]=="")                { $sel3="checked"; }
    if($_GET[search_type]=="any")             { $sel1="checked"; }
    elseif($_GET[search_type]=="leader")        { $sel2="checked"; }
    elseif($_GET[search_type]=="meeting_num")    { $sel3="checked"; }
    elseif($_GET[search_type]=="party")       { $sel4="checked"; }
    elseif($_GET[search_type]=="short_title") { $sel5="checked"; }
    ?>
    <tr class="odd">
    <td colspan="9" align="left" valign="top">
        <table border="0" cellspacing="0" cellpadding="0">
          <tr>
          <td align="left" valign="top" nowrap><b>Search by:&nbsp; </b></td>
          <td align="left" valign="top"><input type="radio" name="search_type" value="meeting_num" <?php echo $sel3;?>></td>
          <td align="left" valign="top" nowrap><b>&nbsp;Reason Num.</b>&nbsp;&nbsp;</td>
          <td align="left" valign="top"><input type="radio" name="search_type" value="short_title" <?php echo $sel5;?>></td>
          <td align="left" valign="top" nowrap>&nbsp;Reason Name&nbsp;&nbsp;</td>
          <td align="left" valign="top"><input type="radio" name="search_type" value="party" <?php echo $sel4;?>></td>
          <td align="left" valign="top" nowrap>&nbsp;Party name&nbsp;&nbsp;</td>
          <td align="left" valign="top"><input type="radio" name="search_type" value="atty" <?php echo $sel2;?>></td>
          <td align="left" valign="top" nowrap>&nbsp;Responcibility&nbsp;&nbsp;</td>
          <td align="left" valign="top" ><input type="radio" name="search_type" value="any" <?php echo $sel1;?>></td>
          <td align="left" valign="top" nowrap>&nbsp;MeetingRoom/Date&nbsp;&nbsp;</td>
          </tr>
        </table>
    </td>
    </tr>
    <tr>
    <td colspan="9" align="left" valign="top">
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td align="LEFT" valign="top"><b>Search for:&nbsp;</b></td>
    <td align="LEFT" valign="top"><input type="text" name="searchInput" <?php if(!empty($_GET[searchInput])) { echo "value =\"$_GET[searchInput]\""; } ?>size="27"></td>
    <td align="left" valign="top"></td>
    <td align="LEFT" valign="top"><input type="radio" name="search_scope" value="broad" <?php if($_GET[search_scope]=="broad" || $_GET[search_scope]=="") { echo "checked"; } ?>></td>
    <td align="left" valign="top">&nbsp;Single or partial word or number &nbsp;</td>
    <td align="LEFT" valign="top"><input type="radio" name="search_scope" value="strict" <?php if($_GET[search_scope]=="strict") { echo "checked"; } ?>></td>
    <td align="left" valign="top">&nbsp;exact phrase&nbsp;&nbsp;</td>
    </tr>
    <tr>
    <td align="LEFT" valign="top"></td>
    <td colspan="6" align="LEFT" valign="top">(e.g. 12345 or SFL-12345; DOE or DOE, JOHN etc.)</td>
    </tr>
    </table>
    </td>
    </tr>
    <tr class="odd">
    <td colspan="9" align="left" valign="top">
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td align="right" valign="top"><b>By Meetingroom:&nbsp; </b></td>
    <td align="right" valign="top"><?php
    /***************************************************
    query for Meetingroom menu
    ***************************************************/
    buildCtrmMenu();
    ?></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td colspan="9" align="left" valign="top">
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td align="left" valign="top"><b>By Date:&nbsp;</b></td>
    <td align="left" valign="top"><?php
    /***************************************************
    // START date select menu
    ***************************************************/
    // if no month is selected, use default start
    $i_begin_start_date = $start_date_begin;
    $end_date_end=31; // set all months to have 31 days
    // otherwise use selected month
    
    echo "<select name=\"startDate\">";
    // echo"<option  value=\"\">Start Date</option>\n";
    while(trim($i_begin_start_date) <= $end_date_end)
    {
      echo "<option value=\"$i_begin_start_date\"";
      // match submitted end date, if any.
      // make sure Get[endDate] is NOT empty; otherwise it'll use the default setting to select the date,
      if(!empty($_GET[startDate]) && $_GET[startDate] == $i_begin_start_date)
      {
        echo " selected " ;
      }                                    
      // default to selecting current day/date
      elseif(empty($_GET[startDate]) && $start_day_d == $i_begin_start_date)
      {
        echo " selected " ;
      }
      // Do nothing...
      else {}
    
      if($i_begin_start_date==1 || $i_begin_start_date==21 || $i_begin_start_date==31) {
      $dt_end="st";
      }
      elseif($i_begin_start_date==2 || $i_begin_start_date==22) {
      $dt_end="nd";
      }
      elseif($i_begin_start_date==3 || $i_begin_start_date==23) {
      $dt_end="rd";
      }                                                                        
      elseif($i_begin_start_date>=4 && $i_begin_start_date <=20 || $i_begin_start_date>=24 && $i_begin_start_date<=30) {
      $dt_end="th";
      } 
      echo ">$i_begin_start_date$dt_end</option>\n";
      $i_begin_start_date++;
    }
    echo "</select>\n";
    ?></td>
    <td align="left" valign="top">&nbsp;day of
    <?php
    $oldest_select = trim(date ( "F Y", $oldest_record));
    echo "<select name=\"startMonth\">";
    foreach($cal_moYr_ary as $tk4=>$tv4)
    {
      echo "<option value=\"$tv4\"";
      if(!empty($_GET[startMonth]) && $_GET[startMonth]  == $tv4)
      {
        echo " selected " ;
      }                                    
      // default to selecting current day/date
      elseif(empty($_GET[startMonth]) && $oldest_select == $tv4)
      {
        echo " selected " ;
      }
      echo ">$tv4</option>\n";
    }
    echo "</select>";
    ?></td>
    <td align="left" valign="top"></td>
    <td align="left" valign="top">&nbsp;to the</td>
    <td align="left" valign="top"><?php
    /***************************************************
    END DATE SELECT MENU
    ***************************************************/
    $i_begin_ending_date = $start_date_begin;
    $end_date_end=31; // set all months to 31 days
    echo "<select name=\"endDate\">";
    while(trim($i_begin_ending_date) <= $end_date_end)
    {
       echo "<option value=\"$i_begin_ending_date\"";
      // match submitted end date, if any.
      // make sure Get[endDate] is NOT empty; otherwise it'll use the default setting to select the date,
      if(!empty($_GET[endDate]) && $_GET[endDate] == $i_begin_ending_date)
      {
        echo " selected " ;
      }                                    
      // default to selecting current day/date
      elseif(empty($_GET[endDate]) && $end_day_d == $i_begin_ending_date)
      {
        echo " selected " ;
      }
      // Do nothing...
      else {}
    
      if($i_begin_ending_date==1 || $i_begin_ending_date==21 || $i_begin_ending_date==31) {
      $dt_end="st";
      }
      elseif($i_begin_ending_date==2 || $i_begin_ending_date==22) {
      $dt_end="nd";
      }
      elseif($i_begin_ending_date==3 || $i_begin_ending_date==23) {
      $dt_end="rd";
    }                                                                        
      elseif($i_begin_ending_date>=4 && $i_begin_ending_date <=20 ||  $i_begin_ending_date>=24 && $i_begin_ending_date<=30) {
      $dt_end="th";
      } 
      echo ">$i_begin_ending_date$dt_end</option>\n";
      $i_begin_ending_date++;
    }
    echo "</select>\n";
    unset($error);
    ?></td>
    <td align="left" valign="top">&nbsp;day of</td>
    <td align="left" valign="top">
    <?php
    $newest_select = trim(date ( "F Y", $newest_record));
    echo "<select name=\"endMonth\">";
    
    foreach($cal_moYr_ary as $tk4=>$tv4)
    {
      echo "<option value=\"$tv4\"";
      if(!empty($_GET[endMonth]) && $_GET[endMonth]  == $tv4)
      {
        echo " selected " ;
      }                                    
      // default to selecting current day/date
      elseif(empty($_GET[endMonth]) && $newest_select == $tv4)
      {
        echo " selected " ;
       }
      echo ">$tv4</option>\n";
    }
    echo "</select>";
    ?></td>
    </tr>
    </table>
    
    </td>
    </tr>
    <tr class="odd">
    <td colspan="9" align="left" valign="top">
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td align="left" valign="top" nowrap></td>
    <td align="left" valign="top" nowrap><input type="submit" name="submitMeeting" value="Search">&nbsp;&nbsp;<span class="textSmall">See '<b>Search Tips</b>' in sidebar for help.</span></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td colspan="9" align="left" valign="top">
    <?php
    } // end if NOT detail view
    
    /***************************************************
    DETERMINE WHICH SEARCH TYPE HAS BEEN REQUESTED
    http://domain.com/$page_name?v=meetings
    &search_type=meeting_num
    &dept_search_menu=
    &startDate=11
    &startMonth=January%202005&endDate=31
    &endMonth=March%202005
    &searchInput=SCV-232732
    &search_scope=strict&
    submitMeeting=Search
    &vtype=detail
    ***************************************************/
    
    if(!empty($_GET[vtype]) && $_GET[vtype]=="detail")
    { 
      //echo "detail...";
      include("meetings_detail.inc.php"); 
    }
    
    // if NOT detail view request...
    elseif(empty($_GET[vtype]) || $_GET[vtype]!="detail")
    {                               
      //if(!empty($_GET[search_type]) && $_GET[vtype]!="detail")
      if(!empty($_GET[search_type]) )
      {
        if($_GET[search_type]=="meeting_num")
        {
        // echo "search for meeting_num";
        if(!empty($_GET[searchInput]))
        {
        include("meetingsqueryreasonnum.inc.php");
        }
        else {
        echo "<b> ERROR. No Meeting Number entered. ";
        }
        }
        elseif($_GET[search_type]=="short_title")
        {
        // echo "search for short_title";
        if(!empty($_GET[searchInput]))
        {
        include("meetings_query_shorttitle.inc.php");
        }
        else {
        echo "<b> ERROR. No Meeting Name entered. ";
        }
        }
        elseif($_GET[search_type]=="atty")
        {
        if(!empty($_GET[searchInput]))
        {
        include("T_meetings_query_responsible.inc.php");
        }
        else 
        {
        echo "<b> ERROR. No Meeting Leader Name entered. ";
        }
        }
        elseif($_GET[search_type]=="party")
        {
          if(!empty($_GET[searchInput]))
          {
            include("meetings_query_party.inc.php");
          }
          else 
          {
            echo "<b> ERROR. No Attendee Name entered. ";
          } 
        }                 
        elseif($_GET[search_type]=="any" && !empty($_GET[dept_search_menu]))
        {
          include("meetings_query_dept.inc.php");
        }
    
        elseif($_GET[search_type]=="any" && !empty($_GET[submitMeeting]) && empty($_GET[dept_search_menu]))
        {
          include("meetings_query_date.inc.php");
        } 
      }
      /***************************************************
      Search by Meeting room only
      ***************************************************/
    
      elseif(empty($_GET[search_type]) && !empty($_GET[dept_search_menu]))
      {
        include("meetings_query_dept.inc.php");
      }
      /***************************************************
      Search by Date Range only
      ***************************************************/
    
      elseif(!empty($_GET[submitMeeting]) && empty($_GET[search_type]) && empty($_GET[dept_search_menu]))
      {
        include("meetings_query_date.inc.php");
      }         
    
      } // end if NOT detail view         
    
    
    ?></td>
    </tr>
    </tr>
    </table>
    </form>
    <?php
    /***************************************************
    FUNCTIONS
    ***************************************************/
    
    /***************************************************
    Build select menu for 'Courtrooms'
    ***************************************************/
    function buildCtrmMenu()
    {
    // get list of active courtrooms from db
    $queryDEPT = "SELECT * 
    FROM MeetingroomList
    WHERE MeetingroomList.CtrmNameName != \"\"
    ";
    
    $resultDEPT = mysql_query ($queryDEPT)
    or die ("Cannot execute query.
    <br>error message = " . mysql_error () . " from " . __FILE__ . " on line " . __LINE__);
    
    if (mysql_num_rows ($resultDEPT) == 0)
    {
      echo ("No records found ");
    }
    
    echo "
    <select name=\"dept_search_menu\">\n
    <option  value=\"\" $dsel>Any Meetingroom</option>\n";
    
    while($rowDEPT = mysql_fetch_array($resultDEPT))
    {
    /***************************************************
    Write select menu values
    ***************************************************/
      // If matches selected menu value, mark as selected
      $CtrmNameValue = $rowDEPT[CtrmNameValue];
      if(trim($_GET[dept_search_menu]) == $CtrmNameValue)
      {
        $sel="selected";
      }
      else
      {
        $sel = "";
      }
    
      echo "
    <option value=\"".$rowDEPT[CtrmNameValue]."\" $sel>".$rowDEPT[CtrmNameName]."</option>";
    }
    echo "
    </select>";
    }
    
    /***************************************************
    DISCLAIMER
    ***************************************************/
    echo "<hr noshade size=\"1\">
    <span class=\"textSmall\"><b>Please Note</b>: As the online calendars are
    updated once daily, at 5 a.m., Monday-Friday, some current changes may  not be available on-line until the 5 a.m. update. 
    If you are unable to find your meeting on-line, or need more information, please contact the Clerks in person, or by phone at xxx-xxx-xxxx.</span>";
    /***************************************************
    SEARCH TIPS
     ***************************************************/
    echo "<br><br><span class=\"textSmall\"><b><a name=\"tips\">Search Tips:</a></b></br>
    1) If you know the meeting number, use meeting number search for fastest results (e.g. SFL-12345 or 12345)<br>
    2) If you know the meeting name, type in part of meeting name (e.g. JOHN)<br>
    3) If you want to search by party's name or leaders's name:<br>
    - Typically party/leader's name is entered as Lastname, Firstname (i.e. DOE, JOHN) and it is not case sensitive.<br>
    - If you don't find your record, try typing  DOE only or JOHN only and narrow the search results using the date range.</span><br>";
    /***************************************************
    If request is for 'detail' view, display note on how to see Calendar Type Abbr. explanation
    ***************************************************/
    if($_GET[vtype]==detail)
    {
     echo "<span class=\"textSmall\">4) Hold mouse over 'CAL. TYPE' abbreviation for explanation.</span><br>";
    }
     /***************************************************
    how long the report took to generate...
    ***************************************************/
    $end_time = getmicrotime();
    $report_seconds = "<br><span class=\"tinyText\">Meeting query completed in ". substr($end_time-$start_time,0,5)." seconds</span>\n";
    echo "$report_seconds";
    
    // display session variables
    foreach($_SESSION as $ks=>$vs)
    {
      // echo "$ks $vs<br>";
    }
    
    /***************************************************
    // Simple function for retrieving the current timestamp in microseconds
    ***************************************************/
    function getmicrotime()
    {
      list($usec, $sec) = explode(" ",microtime());
      return ((float)$usec + (float)$sec);
    }
    ?>