Changeset 144

Show
Ignore:
Timestamp:
12/15/2004 04:14:49 PM (7 years ago)
Author:
vieyra
Message:

Added the new user interface, and file select_other.php as an example
Added pow() method to Units class
Added function db_get_plot_single_values() which basically does the same as db_get_plot_values, but for multiple queries
Added "free" plot type to plot.php to make it compatible with the previous interface
Units are assigned it db_get_plot_single_values() for the properties
Broken Materials Categories in select_other.php
Broken Materials Map Selection in select_other.php
I suggest a better Unit handling class, this one is good but is rapidly falling short for our purposes

Location:
trunk/matml/webselector/php
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/matml/webselector/php/dbquery.php.inc

    r121 r144  
    5454        else 
    5555            $mine[1].=$eirs[1]; 
     56        if(!$mine[1]) 
     57            $name=$mine[0]; 
     58        else 
     59            $name="$mine[0]/$mine[1]"; 
     60        $ret=new Unit( 
     61            "$name", 
     62            $this->num_name*$other->num_name, 
     63            $this->scale*$other->scale 
     64        ); 
     65        return $ret; 
     66    } 
     67    function pow($power) 
     68    { 
     69 
     70      // Write the actual POW function 
     71 
     72        $mine=$this->name_split(); 
     73 
     74 
     75      if( $power > 1){ 
     76        if($mine[0]) 
     77          { 
     78            $mine[0].="^$power"; 
     79          } 
     80        if($mine[1]) 
     81          { 
     82            $mine[1].="^$power"; 
     83          } 
     84      } 
     85      elseif($power == 1){ 
     86        //Do nothing 
     87      } 
     88      elseif( $power == 0){ 
     89 
     90        if($mine[0]) 
     91          { 
     92            $mine[0]="1"; 
     93          } 
     94        if($mine[1]) 
     95          { 
     96            $mine[1]="1"; 
     97          } 
     98      } 
     99      elseif($power == -1){ 
     100 
     101        if($mine[0]&&$mine[1]) 
     102          { 
     103            $temp   = $mine[0]; 
     104            $mine[0]= $mine[1]; 
     105            $mine[1]= $temp; 
     106          } 
     107        elseif($mine[1]&&!$mine[0]) 
     108          { 
     109            $mine[0]=$mine[1]; 
     110            $mine[1]=""; 
     111          } 
     112        elseif($mine[0]&&!$mine[1]) 
     113          { 
     114            $mine[1]=$mine[0]; 
     115            $mine[0]=1; 
     116          } 
     117 
     118 
     119      } 
     120      elseif($power < -1){       
     121 
     122 
     123                if($mine[0]&&$mine[1]) 
     124          { 
     125            $temp   = $mine[0]; 
     126            $mine[0]= "$mine[1]^".abs($power); 
     127            $mine[1]= "$temp^".abs($power); 
     128          } 
     129        elseif($mine[1]&&!$mine[0]) 
     130          { 
     131            $mine[0]="$mine[1]^".abs($power); 
     132            $mine[1]=""; 
     133          } 
     134        elseif($mine[0]&&!$mine[1]) 
     135          { 
     136            $mine[1]="$mine[0]^".abs($power); 
     137            $mine[0]=1; 
     138          } 
     139 
     140      } 
     141 
     142 
    56143        if(!$mine[1]) 
    57144            $name=$mine[0]; 
     
    160247       array_flip(array("Heat Capacity","Specific Heat")) 
    161248    ); 
     249    
    162250   $translation_string="\"abcdefghijklmnopqrstuvwxyz'\",'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"; 
    163251   $ret=array(); 
     
    235323        $ret[$key]=$data; 
    236324   } 
     325 
     326//    echo "<br><br>"; 
     327//    print_r($ret); 
     328 
    237329   return $ret; 
    238330} 
     
    385477    $handle = opendir('materials'); 
    386478 
     479 
     480//     echo "<br><br>Begin Query <br>"; 
     481//     print_r($query); 
     482//     echo "<br>End Query<br>"; 
     483     
     484 
    387485    while (false !== ($file = readdir($handle))) { 
    388486        if(preg_match("/\.xml?$/",$file)==1) 
     
    391489            $values=get_property_data("materials/$file",$query); 
    392490 
    393             if(isset($values["Xquery"])&& 
     491//          echo "<br><br>Begin Values <br>"; 
     492//          print_r($values); 
     493//          echo "End Values <br>"; 
     494 
     495 
     496            If(isset($values["Xquery"])&& 
    394497                isset($values["Yquery"]) 
    395498            ) 
     
    425528                        $names[]=$values["Matid"]; 
    426529                        $categories[]=$category; 
     530                         
    427531                } 
    428532            } 
     
    468572} 
    469573 
     574function db_get_plot_single_values($property_listx, $property_listy, $log, $category_options){  
     575 
     576    global $unit_infos; 
     577 
     578 
     579    // Prepare Array list 
     580 
     581 
     582     $query = array(); 
     583     $power = array(); 
     584     $NXqueries = array(); 
     585     $NYqueries = array(); 
     586 
     587     $xml_name = array( 
     588                        "Density" => "Density", 
     589                        "E"       => "Young's Modulus", 
     590                        "Cp"      => "Heat Capacity", 
     591                        "K"       => "Thermal Conductivity", 
     592                        "YS"      => "Yield Strength" 
     593                        ); 
     594 
     595 
     596     $prop_units = array( 
     597                         "Density" => $unit_infos["g"]->div($unit_infos["cc"]), 
     598                         "E"       => $unit_infos["MPa"], 
     599                         "YS"      => $unit_infos["MPa"], 
     600                         "Cp"      => $unit_infos["J"]->div($unit_infos["g"]->mul($unit_infos["°C"])), 
     601                         "K"      => $unit_infos["W"]->div($unit_infos["m"]->mul($unit_infos["K"])), 
     602                         ); 
     603 
     604    $index = 0; 
     605    $xlabel_num =""; 
     606    $ylabel_num =""; 
     607    $xlabel_den =""; 
     608    $ylabel_den =""; 
     609 
     610    foreach( $property_listx as $property=>$pow){ 
     611      $index++; 
     612      $query["Xquery$index"]="$xml_name[$property]"; 
     613      $power["Xquery$index"]= $pow; 
     614      $final_units["Xquery$index"] = $prop_units["$property"]; 
     615 
     616      if( $pow > 1){ 
     617        $xlabel_num = "$xml_name[$property]^$pow *"; 
     618      } 
     619      elseif($pow == 1){ 
     620        $xlabel_num = "$xml_name[$property]*"; 
     621      } 
     622      elseif($pow == -1){ 
     623        $xlabel_den = "$xml_name[$property]*"; 
     624      } 
     625      elseif($pow < -1){       
     626        $xlabel_den = "$xml_name[$property]^".abs($pow)."*"; 
     627      } 
     628 
     629      array_push($NXqueries, "Xquery$index"); 
     630    } 
     631 
     632    $index = 0; 
     633     
     634 
     635    foreach( $property_listy as $property=>$pow){ 
     636      $index++; 
     637      $query["Yquery$index"]="$xml_name[$property]"; 
     638      $power["Yquery$index"]= $pow; 
     639      $final_units["Yquery$index"] = $prop_units["$property"]; 
     640 
     641      if( $pow > 1){ 
     642        $ylabel_num = "$xml_name[$property]^$pow *"; 
     643      } 
     644      elseif($pow == 1){ 
     645        $ylabel_num = "$xml_name[$property]*"; 
     646      } 
     647      elseif($pow == -1){ 
     648        $ylabel_den = "$xml_name[$property]*"; 
     649      } 
     650      elseif($pow < -1){       
     651        $ylabel_den = "$xml_name[$property]^".abs($pow)."*"; 
     652      } 
     653       
     654      array_push($NYqueries, "Yquery$index"); 
     655    } 
     656 
     657    $ALLqueries = array_merge($NXqueries,$NYqueries); 
     658 
     659    // Prepare final units 
     660  
     661 
     662    $first = 0; 
     663    foreach($NXqueries as $Nquery){ 
     664       
     665      if($first){ 
     666        $Xunits =  $Xunits->mul($final_units["$Nquery"]->pow($power["$Nquery"])); 
     667      } 
     668      else{ 
     669        $Xunits = $final_units["$Nquery"]->pow($power["$Nquery"]); 
     670        $first = 1; 
     671      } 
     672 
     673    } 
     674 
     675    $first = 0; 
     676    foreach($NYqueries as $Nquery){ 
     677       
     678      if($first){ 
     679        $Yunits =  $Yunits->mul($final_units["$Nquery"]->pow($power["$Nquery"])); 
     680      } 
     681      else{ 
     682        $Yunits = $final_units["$Nquery"]->pow($power["$Nquery"]); 
     683        $first = 1; 
     684      } 
     685 
     686    } 
     687 
     688 
     689 
     690    // Prepare final labels 
     691 
     692    $xlabel_num = substr($xlabel_num,0,-1); 
     693    $xlabel_den = substr($xlabel_den,0,-1); 
     694    $ylabel_num = substr($ylabel_num,0,-1); 
     695    $ylabel_den = substr($ylabel_den,0,-1); 
     696 
     697    $xlabel_num = ($xlabel_num != "")?"$xlabel_num":1; 
     698    $ylabel_num = ($ylabel_num != "")?"$ylabel_num":1; 
     699 
     700    $xlabel = ($xlabel_den != "")?"$xlabel_num / $xlabel_den":"$xlabel_num"; 
     701    $ylabel = ($ylabel_den != "")?"$ylabel_num / $ylabel_den":"$ylabel_num"; 
     702 
     703    $xlabel .= " (".$Xunits->name.")"; 
     704    $ylabel .= " (".$Yunits->name.")"; 
     705 
     706 
     707  $query["categories"]="Material Categories"; 
     708   
     709    $valuesY = array(); 
     710    $valuesX = array(); 
     711    $valuese = array(); 
     712    $categories = array(); 
     713   
     714    $handle = opendir('materials'); 
     715 
     716//          echo "<br><br>Begin Query <br>"; 
     717//          print_r($query); 
     718//          echo "End Query<br>"; 
     719 
     720 
     721 
     722    while (false !== ($file = readdir($handle))) { 
     723        if(preg_match("/\.xml?$/",$file)==1) 
     724        { 
     725            // Fetch values from DB and sort them in an array (actually 3 arrays) 
     726            $values=get_property_data("materials/$file",$query); 
     727 
     728 
     729//          echo "<br><br>Begin Values <br>"; 
     730//          print_r($values); 
     731//          echo "End Values <br>"; 
     732 
     733             
     734             
     735            // If isset (for all values) 
     736 
     737            $allset = 1; 
     738 
     739            foreach( $ALLqueries as $Nquery){ 
     740              if(isset($values["$Nquery"])) 
     741                $allset *= 1; 
     742                 else 
     743                   $allset *= 0; 
     744            } 
     745 
     746 
     747            if( $allset ) 
     748            { 
     749 
     750              // Category part, deal with it later 
     751                $values_categories=$values["categories"]; 
     752                $values_categories[]=""; 
     753                foreach($values_categories as $category) 
     754                { 
     755                    if(isset($category_options[$category])) 
     756                        break; 
     757                } 
     758                if(!isset($category_options[$category])) 
     759                    continue; 
     760                $category=$category_options[$category]; 
     761                // Category part, deal with it later 
     762                 
     763 
     764 
     765 
     766                //Force unit match for all queries 
     767 
     768                foreach( $NXqueries as $Nquery){ 
     769                  force_unit_match($values["Matid"],$final_units["$Nquery"],$values["$Nquery"]); 
     770                } 
     771 
     772                foreach( $NYqueries as $Nquery){ 
     773                  force_unit_match($values["Matid"],$final_units["$Nquery"],$values["$Nquery"]); 
     774                } 
     775 
     776                //Scale units 
     777                //and add them to the array 
     778 
     779                $cont = 1; 
     780 
     781                // And the Power? 
     782 
     783                foreach( $NXqueries as $Nquery){ 
     784                  $cont *= ( pow($values["$Nquery"]->avg_value,$power["$Nquery"]) /$final_units["$Nquery"]->scale); 
     785                } 
     786                $valuesX[]=$cont; 
     787                   
     788                $cont = 1; 
     789 
     790                foreach( $NYqueries as $Nquery){ 
     791                  $cont *= ( pow($values["$Nquery"]->avg_value,$power["$Nquery"]) /$final_units["$Nquery"]->scale); 
     792                } 
     793                $valuesY[]=$cont; 
     794 
     795                 
     796//              print_r($valuesX); 
     797//              echo "<br>"; 
     798//              print_r($valuesY); 
     799//              echo "<br>"; 
     800                 
     801 
     802                // Add Matid 
     803                $names[]=$values["Matid"]; 
     804                 
     805                // Something else for category 
     806                $categories[]=$category; 
     807 
     808            } 
     809        } 
     810    } 
     811    closedir($handle); 
     812   
     813 
     814    //assing label 
     815 
     816//     $ylabel = "$property_listy[0]"; 
     817//     $xlabel = "$property_listx[0]"; 
     818 
     819  
     820 
     821    return array(&$valuesX, &$valuesY, &$names, $xlabel, $ylabel, $categories); 
     822 
     823} 
     824 
     825 
     826 
     827 
     828 
    470829//var_dump(db_get_plot_values("EvsD",""));  
    471830?> 
  • trunk/matml/webselector/php/php_errors.txt

    r121 r144  
    11[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: link line 10 and head 
    22 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    3  
    43[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: li line 22 and ul 
    54 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    6  
    75[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: li line 21 and div 
    86 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    9  
    107[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: br line 29 and div 
    118 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    12  
    139[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: li line 48 and ul 
    1410 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    15  
    1611[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: li line 54 and ul 
    1712 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    18  
    1913[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Entity 'nbsp' not defined 
    2014 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    21  
    2215[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: br line 142 and dl 
    2316 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    24  
    2517[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: p line 190 and dl 
    2618 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    27  
    2819[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): AttValue: &quot; or ' expected 
    2920 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    30  
    3121[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): attributes construct error 
    3222 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    33  
    3423[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): error parsing attribute name 
    3524 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    36  
    3725[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): attributes construct error 
    3826 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    39  
    4027[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): xmlParseStartTag: problem parsing attributes 
    4128 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    42  
    4329[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Couldn't find end of Start Tag img line 198 
    4430 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    45  
    4631[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: p line 224 and dl 
    4732 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    48  
    4933[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: img line 233 and div 
    5034 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    51  
    5235[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): End tag : expected '&gt;' 
    5336 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    54  
    5537[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: p line 250 and div 
    5638 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    57  
    5839[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: p line 238 and body 
    5940 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    60  
    6141[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Opening and ending tag mismatch: hr line 235 and html 
    6242 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    63  
    6443[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag div line 233 
    6544 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    66  
    6745[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 224 
    6846 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    69  
    7047[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 222 
    7148 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    72  
    7349[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 213 
    7450 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    75  
    7651[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 213 
    7752 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    78  
    7953[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 211 
    8054 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    81  
    8255[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dl line 209 
    8356 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    84  
    8557[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag hr line 197 
    8658 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    87  
    8859[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 190 
    8960 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    90  
    9161[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 187 
    9262 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    93  
    9463[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 180 
    9564 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    96  
    9765[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 180 
    9866 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    99  
    10067[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 177 
    10168 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    102  
    10369[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag br line 173 
    10470 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    105  
    10671[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 167 
    10772 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    108  
    10973[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 167 
    11074 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    111  
    11275[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 164 
    11376 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    114  
    11577[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag br line 160 
    11678 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    117  
    11879[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 159 
    11980 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    120  
    12181[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 159 
    12282 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    123  
    12483[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 156 
    12584 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    126  
    12785[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dl line 154 
    12886 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    129  
    13087[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag hr line 148 
    13188 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    132  
    13389[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 135 
    13490 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    135  
    13691[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 135 
    13792 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    138  
    13993[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 133 
    14094 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    141  
    14295[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag br line 129 
    14396 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    144  
    14597[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 129 
    14698 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    147  
    14899[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 129 
    149100 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    150  
    151101[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 127 
    152102 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    153  
    154103[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag br line 123 
    155104 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    156  
    157105[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 117 
    158106 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    159  
    160107[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 117 
    161108 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    162  
    163109[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 115 
    164110 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    165  
    166111[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag br line 111 
    167112 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    168  
    169113[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 105 
    170114 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    171  
    172115[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 105 
    173116 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    174  
    175117[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 103 
    176118 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    177  
    178119[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag br line 99 
    179120 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    180  
    181121[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 93 
    182122 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    183  
    184123[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 93 
    185124 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    186  
    187125[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 91 
    188126 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    189  
    190127[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 77 
    191128 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    192  
    193129[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 77 
    194130 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    195  
    196131[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 75 
    197132 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    198  
    199133[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag p line 64 
    200134 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    201  
    202135[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dd line 64 
    203136 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    204  
    205137[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dt line 63 
    206138 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    207  
    208139[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag dl line 61 
    209140 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    210  
    211141[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag hr line 58 
    212142 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    213  
    214143[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag ul line 53 
    215144 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    216  
    217145[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 47 
    218146 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    219  
    220147[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 46 
    221148 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    222  
    223149[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 45 
    224150 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    225  
    226151[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 43 
    227152 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    228  
    229153[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 42 
    230154 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    231  
    232155[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 41 
    233156 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    234  
    235157[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 40 
    236158 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    237  
    238159[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 39 
    239160 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    240  
    241161[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 38 
    242162 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    243  
    244163[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 37 
    245164 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    246  
    247165[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag ul line 36 
    248166 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    249  
    250167[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag div line 27 
    251168 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    252  
    253169[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag div line 26 
    254170 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    255  
    256171[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag hr line 25 
    257172 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    258  
    259173[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 20 
    260174 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    261  
    262175[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 19 
    263176 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    264  
    265177[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag li line 18 
    266178 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    267  
    268179[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag ul line 17 
    269180 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    270  
    271181[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag div line 16 
    272182 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    273  
    274183[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag hr line 15 
    275184 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    276  
    277185[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag body line 12 
    278186 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    279  
    280187[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag meta line 8 
    281188 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    282  
    283189[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag meta line 7 
    284190 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    285  
    286191[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag meta line 6 
    287192 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    288  
    289193[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag meta line 5 
    290194 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    291  
    292195[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag head line 4 
    293196 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    294  
    295197[02-Aug-2004 17:35:08] PHP Warning:  domxml_open_mem(): Premature end of data in tag html line 3 
    296198 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    297  
    298199[02-Aug-2004 17:35:08] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 145 
    299  
    300200[02-Aug-2004 17:35:37] PHP Warning:  file_get_contents(test.xml): failed to open stream: No such file or directory in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 
    301  
    302201[02-Aug-2004 17:35:37] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 145 
    303  
    304202[02-Aug-2004 21:54:01] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 268 
    305  
    306203[02-Aug-2004 21:57:01] PHP Notice:  Undefined index:  °C in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 270 
    307  
    308204[02-Aug-2004 21:57:01] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 47 
    309  
    310205[02-Aug-2004 21:58:11] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    311  
    312206[02-Aug-2004 21:58:11] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    313  
    314207[02-Aug-2004 21:58:11] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    315  
    316208[02-Aug-2004 21:58:11] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    317  
    318209[02-Aug-2004 21:58:19] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    319  
    320210[02-Aug-2004 21:58:19] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    321  
    322211[02-Aug-2004 21:58:19] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    323  
    324212[02-Aug-2004 21:58:19] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    325  
    326213[02-Aug-2004 21:58:23] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    327  
    328214[02-Aug-2004 21:58:23] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    329  
    330215[02-Aug-2004 21:58:23] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    331  
    332216[02-Aug-2004 21:58:23] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    333  
    334217[02-Aug-2004 22:18:35] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    335  
    336218[02-Aug-2004 22:18:35] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    337  
    338219[02-Aug-2004 22:18:35] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    339  
    340220[02-Aug-2004 22:18:35] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    341  
    342221[02-Aug-2004 22:22:28] PHP Parse error:  parse error, unexpected T_OBJECT_OPERATOR, expecting ')' in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 270 
    343  
    344222[02-Aug-2004 22:23:18] PHP Parse error:  parse error, unexpected T_OBJECT_OPERATOR, expecting ')' in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 270 
    345  
    346223[02-Aug-2004 22:24:15] PHP Parse error:  parse error, unexpected T_DOUBLE_ARROW in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 271 
    347  
    348224[02-Aug-2004 22:27:55] PHP Parse error:  parse error, unexpected ')' in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 291 
    349  
    350225[02-Aug-2004 22:28:17] PHP Parse error:  parse error, unexpected T_ECHO in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 297 
    351  
    352226[02-Aug-2004 22:39:57] PHP Warning:  domxml_open_mem(): Input is not proper UTF-8, indicate encoding ! 
    353227 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 
    354  
    355228[02-Aug-2004 22:39:57] PHP Warning:  domxml_open_mem(): Bytes: 0xAE 0x20 0x31 0x32 
    356229 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 
    357  
    358230[02-Aug-2004 22:39:57] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 148 
    359  
    360231[02-Aug-2004 22:47:46] PHP Warning:  domxml_open_mem(): Input is not proper UTF-8, indicate encoding ! 
    361232 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 
    362  
    363233[02-Aug-2004 22:47:46] PHP Warning:  domxml_open_mem(): Bytes: 0xAE 0x20 0x31 0x32 
    364234 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 
    365  
    366235[02-Aug-2004 22:47:46] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 148 
    367  
    368236[02-Aug-2004 22:48:05] PHP Warning:  domxml_open_mem(): Input is not proper UTF-8, indicate encoding ! 
    369237 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 
    370  
    371238[02-Aug-2004 22:48:05] PHP Warning:  domxml_open_mem(): Bytes: 0xAE 0x20 0x31 0x32 
    372239 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 
    373  
    374240[02-Aug-2004 22:48:05] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 148 
    375  
    376241[02-Aug-2004 22:50:34] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    377  
    378242[02-Aug-2004 22:50:34] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 64 
    379  
    380243[02-Aug-2004 22:50:34] PHP Warning:  max(): Array must contain atleast one element in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    381  
    382244[02-Aug-2004 22:50:34] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 65 
    383  
    384245[02-Aug-2004 22:54:03] PHP Notice:  Use of undefined constant plot - assumed 'plot' in C:\Program Files\Apache Group\Apache2\htdocs\graph\select.php on line 16 
    385  
    386246[02-Aug-2004 22:54:03] PHP Notice:  Undefined index:  plot in C:\Program Files\Apache Group\Apache2\htdocs\graph\select.php on line 16 
    387  
    388247[02-Aug-2004 22:54:09] PHP Notice:  Use of undefined constant plot - assumed 'plot' in C:\Program Files\Apache Group\Apache2\htdocs\graph\select.php on line 16 
    389  
    390248[02-Aug-2004 22:54:14] PHP Notice:  Use of undefined constant plot - assumed 'plot' in C:\Program Files\Apache Group\Apache2\htdocs\graph\select.php on line 16 
    391  
    392249[02-Aug-2004 23:50:19] PHP Parse error:  parse error, unexpected '{' in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 247 
    393  
    394250[03-Aug-2004 00:01:51] PHP Notice:  Undefined index:  plot in C:\Program Files\Apache Group\Apache2\htdocs\graph\select.php on line 16 
    395  
    396251[03-Aug-2004 00:02:03] PHP Notice:  Undefined index:  BTU in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    397  
    398252[03-Aug-2004 00:02:03] PHP Notice:  Undefined index:  °F in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    399  
    400253[03-Aug-2004 00:02:03] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 218 
    401  
    402254[03-Aug-2004 00:02:03] PHP Notice:  Undefined index:  BTU in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    403  
    404255[03-Aug-2004 00:02:03] PHP Notice:  Undefined index:  °F in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    405  
    406256[03-Aug-2004 00:02:03] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 218 
    407  
    408257[03-Aug-2004 00:02:03] PHP Notice:  Undefined index:  BTU in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    409  
    410258[03-Aug-2004 00:02:03] PHP Notice:  Undefined index:  hr in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    411  
    412259[03-Aug-2004 00:02:03] PHP Notice:  Undefined index:  ft in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    413  
    414260[03-Aug-2004 00:02:03] PHP Notice:  Undefined index:  °F in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    415  
    416261[03-Aug-2004 00:02:11] PHP Notice:  Undefined index:  BTU in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    417  
    418262[03-Aug-2004 00:02:11] PHP Notice:  Undefined index:  °F in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    419  
    420263[03-Aug-2004 00:02:11] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 218 
    421  
    422264[03-Aug-2004 00:02:11] PHP Notice:  Undefined index:  BTU in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    423  
    424265[03-Aug-2004 00:02:11] PHP Notice:  Undefined index:  °F in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    425  
    426266[03-Aug-2004 00:02:11] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 218 
    427  
    428267[03-Aug-2004 00:02:11] PHP Notice:  Undefined index:  BTU in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    429  
    430268[03-Aug-2004 00:02:11] PHP Notice:  Undefined index:  hr in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    431  
    432269[03-Aug-2004 00:02:11] PHP Notice:  Undefined index:  ft in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    433  
    434270[03-Aug-2004 00:02:11] PHP Notice:  Undefined index:  °F in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    435  
    436271[03-Aug-2004 00:02:19] PHP Notice:  Undefined index:  BTU in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    437  
    438272[03-Aug-2004 00:02:19] PHP Notice:  Undefined index:  °F in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    439  
    440273[03-Aug-2004 00:02:19] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 218 
    441  
    442274[03-Aug-2004 00:02:19] PHP Notice:  Undefined index:  BTU in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    443  
    444275[03-Aug-2004 00:02:19] PHP Notice:  Undefined index:  °F in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    445  
    446276[03-Aug-2004 00:02:19] PHP Warning:  Division by zero in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 218 
    447  
    448277[03-Aug-2004 00:02:19] PHP Notice:  Undefined index:  BTU in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    449  
    450278[03-Aug-2004 00:02:19] PHP Notice:  Undefined index:  hr in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    451  
    452279[03-Aug-2004 00:02:19] PHP Notice:  Undefined index:  ft in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    453  
    454280[03-Aug-2004 00:02:19] PHP Notice:  Undefined index:  °F in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 133 
    455  
    456281[03-Aug-2004 00:30:36] PHP Parse error:  parse error, unexpected T_DOUBLE_ARROW in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 248 
    457  
    458282[03-Aug-2004 00:31:55] PHP Notice:  Undefined index:  hr in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 135 
    459  
    460283[03-Aug-2004 00:31:55] PHP Notice:  Undefined index:  ft in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 135 
    461  
    462 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    463  
    464 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    465  
    466 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    467  
    468 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    469  
    470 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    471  
    472 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    473  
    474 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    475  
    476 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    477  
    478 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    479  
    480 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    481  
    482 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    483  
    484 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    485  
     284[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     285[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     286[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     287[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     288[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     289[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     290[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     291[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     292[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     293[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     294[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     295[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    486296[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 262 
    487  
    488 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    489  
     297[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    490298[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 283 
    491  
    492 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    493  
    494 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    495  
     299[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     300[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    496301[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 262 
    497  
    498 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    499  
     302[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    500303[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 283 
    501  
    502 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    503  
    504 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    505  
    506 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    507  
    508 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    509  
    510 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    511  
    512 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    513  
    514 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    515  
    516 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    517  
    518 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    519  
    520 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    521  
    522 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    523  
    524 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    525  
    526 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    527  
    528 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    529  
    530 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    531  
    532 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    533  
    534 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    535  
    536 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    537  
    538 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    539  
    540 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    541  
    542 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    543  
    544 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    545  
    546 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    547  
    548 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    549  
    550 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    551  
    552 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    553  
    554 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    555  
    556 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    557  
    558 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    559  
    560 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    561  
    562 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    563  
    564 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    565  
    566 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    567  
    568 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    569  
    570 [03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    571  
     304[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     305[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     306[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     307[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     308[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     309[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     310[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     311[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     312[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     313[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     314[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     315[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     316[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     317[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     318[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     319[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     320[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     321[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     322[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     323[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     324[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     325[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     326[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     327[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     328[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     329[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     330[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     331[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     332[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     333[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     334[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     335[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     336[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     337[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
     338[03-Aug-2004 00:49:46] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 265 
    572339[03-Aug-2004 00:50:13] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 262 
    573  
    574340[03-Aug-2004 00:50:13] PHP Notice:  Undefined variable:  property in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 262 
    575  
    576341[03-Aug-2004 00:58:57] PHP Notice:  Undefined index:  plot in C:\Program Files\Apache Group\Apache2\htdocs\graph\select.php on line 16 
    577  
    578342[03-Aug-2004 14:07:39] PHP Notice:  Undefined index:  plot in C:\Program Files\Apache Group\Apache2\htdocs\graph\select.php on line 16 
    579  
    580343[25-Aug-2004 17:00:32] PHP Notice:  Undefined index:  plot in C:\Program Files\Apache Group\Apache2\htdocs\graph\plot.php on line 7 
    581  
    582344[25-Aug-2004 17:00:33] PHP Notice:  Undefined variable:  query in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 370 
    583  
    584345[25-Aug-2004 17:00:33] PHP Warning:  Invalid argument supplied for foreach() in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 163 
    585  
    586346[25-Aug-2004 17:00:33] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 217 
    587  
    588347[25-Aug-2004 17:00:41] PHP Notice:  Undefined index:  plot in C:\Program Files\Apache Group\Apache2\htdocs\graph\select.php on line 16 
    589  
    590348[25-Aug-2004 17:00:41] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 217 
    591  
    592349[25-Aug-2004 17:00:42] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 217 
    593  
    594350[25-Aug-2004 17:00:44] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 217 
    595  
    596351[25-Aug-2004 17:00:46] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 217 
    597  
    598352[25-Aug-2004 17:00:53] PHP Fatal error:  Call to a member function on a non-object in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 217 
    599  
    600353[25-Aug-2004 17:08:27] PHP Fatal error:  Cannot instantiate non-existent class:  domxpath in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 154 
    601  
    602354[25-Aug-2004 17:13:54] PHP Fatal error:  Cannot instantiate non-existent class:  domxpath in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 154 
    603  
    604355[25-Aug-2004 17:26:38] PHP Parse error:  parse error, unexpected '&' in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 152 
    605  
    606356[25-Aug-2004 17:26:45] PHP Warning:  Call-time pass-by-reference has been deprecated - argument passed by value;  If you would like to pass it by reference, modify the declaration of xpath_query().  If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file.  However, future versions may not support this any longer.  in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 179 
    607  
    608357[25-Aug-2004 17:26:45] PHP Fatal error:  Call to undefined function:  php_version() in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 151 
    609  
    610358[25-Aug-2004 17:27:48] PHP Fatal error:  Call to undefined function:  php_version() in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 151 
    611  
    612359[25-Aug-2004 17:27:58] PHP Fatal error:  Call to undefined function:  query() in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 209 
    613  
    614360[25-Aug-2004 17:36:01] PHP Warning:  domdocument() expects at least 1 parameter, 0 given in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 169 
    615  
    616361[25-Aug-2004 17:36:01] PHP Fatal error:  Call to undefined function:  loadxml() in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 170 
    617  
    618362[25-Aug-2004 17:37:56] PHP Parse error:  parse error, unexpected T_OBJECT_OPERATOR in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 185 
    619  
    620363[25-Aug-2004 17:51:56] PHP Parse error:  parse error, unexpected T_OBJECT_OPERATOR in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 189 
    621  
    622364[25-Aug-2004 17:53:14] PHP Fatal error:  Call to undefined function:  getelementsbytagname() in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 129 
    623  
  • trunk/matml/webselector/php/plot.php

    r121 r144  
    9696    $categorization=$categorizations[0]; 
    9797 
     98 
     99 
     100if(isset($_REQUEST["numvars"])){ 
     101  $numvars=$_REQUEST['numvars']; 
     102} 
     103 
     104$matstring = ""; 
     105$property_listx = array(); 
     106$property_listy = array(); 
     107for($i=1;$i<=4;$i++){ 
     108  if(isset($_REQUEST["propname".$i])){ 
     109    $propname[$i]=$_REQUEST['propname'.$i]; 
     110  } 
     111  if(isset($_REQUEST["xpow".$i])){ 
     112    $xpow[$i]=$_REQUEST['xpow'.$i]; 
     113  } 
     114  if(isset($_REQUEST["ypow".$i])){ 
     115    $ypow[$i]=$_REQUEST['ypow'.$i]; 
     116  } 
     117 
     118  if($xpow[$i] != 0){ 
     119    $property_listx["$propname[$i]"] = "$xpow[$i]"; 
     120  } 
     121  if($ypow[$i] != 0){ 
     122    $property_listy["$propname[$i]"] = "$ypow[$i]"; 
     123  } 
     124 
     125} 
     126// print_r($ypow); 
     127// echo "<br><br>"; 
     128// print_r($property_listx); 
     129// echo "<br><br>"; 
     130// print_r($property_listy); 
     131 
     132 
     133 
     134 
    98135//get the values from the database with these function 
    99 list($valuesX, $valuesY, $names, $xlabel, $ylabel, $categories) = db_get_plot_values($plottype, $log, $categorization); 
     136if($plottype == "free") 
     137     list($valuesX, $valuesY, $names, $xlabel, $ylabel, $categories) = db_get_plot_single_values($property_listx, $property_listy, $log, $categorization); 
     138     else 
     139     list($valuesX, $valuesY, $names, $xlabel, $ylabel, $categories) = db_get_plot_values($plottype, $log, $categorization); 
     140 
     141 
     142 
     143// print_r($valuesX); 
     144// echo "<br>"; 
     145// print_r($valuesY); 
     146 
     147// return; 
    100148 
    101149$number_mat = count($names);