summaryrefslogtreecommitdiffstats
path: root/frontends/php/graph.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-11-24 16:43:23 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-11-24 16:43:23 +0000
commit4eeeb02ee16f99f6b2d692f7e863ebfca66c1c63 (patch)
treef2ad9a8bca15f6bef61a8156b88f7ea35ed5f707 /frontends/php/graph.php
parent3cbe6adc1f59c83ccdf319d31e7c03cb70db6351 (diff)
downloadzabbix-4eeeb02ee16f99f6b2d692f7e863ebfca66c1c63.tar.gz
zabbix-4eeeb02ee16f99f6b2d692f7e863ebfca66c1c63.tar.xz
zabbix-4eeeb02ee16f99f6b2d692f7e863ebfca66c1c63.zip
Misc cleanup.
git-svn-id: svn://svn.zabbix.com/trunk@2356 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/graph.php')
-rw-r--r--frontends/php/graph.php19
1 files changed, 10 insertions, 9 deletions
diff --git a/frontends/php/graph.php b/frontends/php/graph.php
index 4aa803ac..962d1b59 100644
--- a/frontends/php/graph.php
+++ b/frontends/php/graph.php
@@ -153,11 +153,12 @@
{
$sql="select itemid,color,drawtype,sortorder,yaxisside from graphs_items where gitemid=".$_REQUEST["gitemid"];
$result=DBselect($sql);
- $itemid=DBget_field($result,0,0);
- $color=DBget_field($result,0,1);
- $drawtype=DBget_field($result,0,2);
- $sortorder=DBget_field($result,0,3);
- $yaxisside=DBget_field($result,0,4);
+ $row=DBfetch($result);
+ $itemid=$row["itemid"];
+ $color=$row["color"];
+ $drawtype=$row["drawtype"];
+ $sortorder=$row["sortorder"];
+ $yaxisside=$row["yaxisside"];
}
else
{
@@ -180,11 +181,11 @@
show_table2_h_delimiter();
$result=DBselect("select h.host,i.description,i.itemid,i.key_ from hosts h,items i where h.hostid=i.hostid and h.status in(".HOST_STATUS_MONITORED.",".HOST_STATUS_TEMPLATE.") and i.status=".ITEM_STATUS_ACTIVE." order by h.host,i.description");
echo "<select name=\"itemid\" size=1>";
- for($i=0;$i<DBnum_rows($result);$i++)
+ while($row=DBfetch($result))
{
- $host_=DBget_field($result,$i,0);
- $description_=item_description(DBget_field($result,$i,1),DBget_field($result,$i,3));
- $itemid_=DBget_field($result,$i,2);
+ $host_=$row["host"];
+ $description_=item_description($row["itemid"],$row["key_"]);
+ $itemid_=$row["itemid"];
if(isset($itemid)&&($itemid==$itemid_))
{
echo "<OPTION VALUE='$itemid_' SELECTED>$host_: $description_";