Changeset 144
- Timestamp:
- 12/15/2004 04:14:49 PM (7 years ago)
- Location:
- trunk/matml/webselector/php
- Files:
-
- 3 modified
-
dbquery.php.inc (modified) (7 diffs)
-
php_errors.txt (modified) (1 diff)
-
plot.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/matml/webselector/php/dbquery.php.inc
r121 r144 54 54 else 55 55 $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 56 143 if(!$mine[1]) 57 144 $name=$mine[0]; … … 160 247 array_flip(array("Heat Capacity","Specific Heat")) 161 248 ); 249 162 250 $translation_string="\"abcdefghijklmnopqrstuvwxyz'\",'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"; 163 251 $ret=array(); … … 235 323 $ret[$key]=$data; 236 324 } 325 326 // echo "<br><br>"; 327 // print_r($ret); 328 237 329 return $ret; 238 330 } … … 385 477 $handle = opendir('materials'); 386 478 479 480 // echo "<br><br>Begin Query <br>"; 481 // print_r($query); 482 // echo "<br>End Query<br>"; 483 484 387 485 while (false !== ($file = readdir($handle))) { 388 486 if(preg_match("/\.xml?$/",$file)==1) … … 391 489 $values=get_property_data("materials/$file",$query); 392 490 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"])&& 394 497 isset($values["Yquery"]) 395 498 ) … … 425 528 $names[]=$values["Matid"]; 426 529 $categories[]=$category; 530 427 531 } 428 532 } … … 468 572 } 469 573 574 function 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 470 829 //var_dump(db_get_plot_values("EvsD","")); 471 830 ?> -
trunk/matml/webselector/php/php_errors.txt
r121 r144 1 1 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: link line 10 and head 2 2 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 3 4 3 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: li line 22 and ul 5 4 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 6 7 5 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: li line 21 and div 8 6 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 9 10 7 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: br line 29 and div 11 8 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 12 13 9 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: li line 48 and ul 14 10 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 15 16 11 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: li line 54 and ul 17 12 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 18 19 13 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Entity 'nbsp' not defined 20 14 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 21 22 15 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: br line 142 and dl 23 16 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 24 25 17 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: p line 190 and dl 26 18 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 27 28 19 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): AttValue: " or ' expected 29 20 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 30 31 21 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): attributes construct error 32 22 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 33 34 23 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): error parsing attribute name 35 24 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 36 37 25 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): attributes construct error 38 26 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 39 40 27 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): xmlParseStartTag: problem parsing attributes 41 28 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 42 43 29 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Couldn't find end of Start Tag img line 198 44 30 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 45 46 31 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: p line 224 and dl 47 32 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 48 49 33 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: img line 233 and div 50 34 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 51 52 35 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): End tag : expected '>' 53 36 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 54 55 37 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: p line 250 and div 56 38 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 57 58 39 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: p line 238 and body 59 40 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 60 61 41 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Opening and ending tag mismatch: hr line 235 and html 62 42 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 63 64 43 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag div line 233 65 44 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 66 67 45 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 224 68 46 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 69 70 47 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 222 71 48 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 72 73 49 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 213 74 50 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 75 76 51 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 213 77 52 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 78 79 53 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 211 80 54 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 81 82 55 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dl line 209 83 56 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 84 85 57 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag hr line 197 86 58 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 87 88 59 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 190 89 60 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 90 91 61 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 187 92 62 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 93 94 63 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 180 95 64 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 96 97 65 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 180 98 66 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 99 100 67 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 177 101 68 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 102 103 69 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag br line 173 104 70 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 105 106 71 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 167 107 72 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 108 109 73 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 167 110 74 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 111 112 75 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 164 113 76 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 114 115 77 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag br line 160 116 78 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 117 118 79 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 159 119 80 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 120 121 81 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 159 122 82 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 123 124 83 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 156 125 84 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 126 127 85 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dl line 154 128 86 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 129 130 87 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag hr line 148 131 88 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 132 133 89 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 135 134 90 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 135 136 91 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 135 137 92 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 138 139 93 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 133 140 94 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 141 142 95 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag br line 129 143 96 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 144 145 97 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 129 146 98 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 147 148 99 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 129 149 100 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 150 151 101 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 127 152 102 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 153 154 103 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag br line 123 155 104 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 156 157 105 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 117 158 106 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 159 160 107 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 117 161 108 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 162 163 109 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 115 164 110 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 165 166 111 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag br line 111 167 112 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 168 169 113 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 105 170 114 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 171 172 115 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 105 173 116 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 174 175 117 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 103 176 118 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 177 178 119 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag br line 99 179 120 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 180 181 121 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 93 182 122 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 183 184 123 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 93 185 124 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 186 187 125 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 91 188 126 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 189 190 127 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 77 191 128 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 192 193 129 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 77 194 130 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 195 196 131 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 75 197 132 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 198 199 133 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag p line 64 200 134 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 201 202 135 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dd line 64 203 136 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 204 205 137 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dt line 63 206 138 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 207 208 139 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag dl line 61 209 140 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 210 211 141 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag hr line 58 212 142 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 213 214 143 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag ul line 53 215 144 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 216 217 145 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 47 218 146 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 219 220 147 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 46 221 148 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 222 223 149 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 45 224 150 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 225 226 151 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 43 227 152 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 228 229 153 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 42 230 154 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 231 232 155 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 41 233 156 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 234 235 157 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 40 236 158 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 237 238 159 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 39 239 160 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 240 241 161 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 38 242 162 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 243 244 163 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 37 245 164 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 246 247 165 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag ul line 36 248 166 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 249 250 167 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag div line 27 251 168 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 252 253 169 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag div line 26 254 170 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 255 256 171 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag hr line 25 257 172 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 258 259 173 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 20 260 174 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 261 262 175 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 19 263 176 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 264 265 177 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag li line 18 266 178 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 267 268 179 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag ul line 17 269 180 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 270 271 181 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag div line 16 272 182 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 273 274 183 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag hr line 15 275 184 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 276 277 185 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag body line 12 278 186 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 279 280 187 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag meta line 8 281 188 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 282 283 189 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag meta line 7 284 190 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 285 286 191 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag meta line 6 287 192 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 288 289 193 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag meta line 5 290 194 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 291 292 195 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag head line 4 293 196 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 294 295 197 [02-Aug-2004 17:35:08] PHP Warning: domxml_open_mem(): Premature end of data in tag html line 3 296 198 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 144 297 298 199 [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 300 200 [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 302 201 [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 304 202 [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 306 203 [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 308 204 [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 310 205 [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 312 206 [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 314 207 [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 316 208 [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 318 209 [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 320 210 [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 322 211 [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 324 212 [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 326 213 [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 328 214 [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 330 215 [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 332 216 [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 334 217 [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 336 218 [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 338 219 [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 340 220 [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 342 221 [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 344 222 [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 346 223 [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 348 224 [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 350 225 [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 352 226 [02-Aug-2004 22:39:57] PHP Warning: domxml_open_mem(): Input is not proper UTF-8, indicate encoding ! 353 227 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 354 355 228 [02-Aug-2004 22:39:57] PHP Warning: domxml_open_mem(): Bytes: 0xAE 0x20 0x31 0x32 356 229 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 357 358 230 [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 360 231 [02-Aug-2004 22:47:46] PHP Warning: domxml_open_mem(): Input is not proper UTF-8, indicate encoding ! 361 232 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 362 363 233 [02-Aug-2004 22:47:46] PHP Warning: domxml_open_mem(): Bytes: 0xAE 0x20 0x31 0x32 364 234 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 365 366 235 [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 368 236 [02-Aug-2004 22:48:05] PHP Warning: domxml_open_mem(): Input is not proper UTF-8, indicate encoding ! 369 237 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 370 371 238 [02-Aug-2004 22:48:05] PHP Warning: domxml_open_mem(): Bytes: 0xAE 0x20 0x31 0x32 372 239 in C:\Program Files\Apache Group\Apache2\htdocs\graph\dbquery.php.inc on line 147 373 374 240 [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 376 241 [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 378 242 [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 380 243 [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 382 244 [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 384 245 [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 386 246 [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 388 247 [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 390 248 [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 392 249 [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 394 250 [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 396 251 [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 398 252 [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 400 253 [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 402 254 [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 404 255 [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 406 256 [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 408 257 [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 410 258 [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 412 259 [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 414 260 [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 416 261 [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 418 262 [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 420 263 [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 422 264 [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 424 265 [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 426 266 [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 428 267 [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 430 268 [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 432 269 [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 434 270 [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 436 271 [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 438 272 [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 440 273 [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 442 274 [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 444 275 [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 446 276 [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 448 277 [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 450 278 [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 452 279 [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 454 280 [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 456 281 [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 458 282 [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 460 283 [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 486 296 [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 490 298 [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 496 301 [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 500 303 [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 572 339 [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 574 340 [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 576 341 [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 578 342 [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 580 343 [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 582 344 [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 584 345 [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 586 346 [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 588 347 [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 590 348 [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 592 349 [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 594 350 [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 596 351 [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 598 352 [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 600 353 [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 602 354 [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 604 355 [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 606 356 [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 608 357 [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 610 358 [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 612 359 [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 614 360 [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 616 361 [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 618 362 [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 620 363 [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 622 364 [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 96 96 $categorization=$categorizations[0]; 97 97 98 99 100 if(isset($_REQUEST["numvars"])){ 101 $numvars=$_REQUEST['numvars']; 102 } 103 104 $matstring = ""; 105 $property_listx = array(); 106 $property_listy = array(); 107 for($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 98 135 //get the values from the database with these function 99 list($valuesX, $valuesY, $names, $xlabel, $ylabel, $categories) = db_get_plot_values($plottype, $log, $categorization); 136 if($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; 100 148 101 149 $number_mat = count($names);