From 022c314f462ac48871a993b5f6282443953cfd24 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Wed, 28 Mar 2001 06:45:24 +0000 Subject: Initial revision git-svn-id: svn://svn.zabbix.com/trunk@2 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/queue.html | 52 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 frontends/php/queue.html (limited to 'frontends/php/queue.html') diff --git a/frontends/php/queue.html b/frontends/php/queue.html new file mode 100644 index 00000000..baa374d8 --- /dev/null +++ b/frontends/php/queue.html @@ -0,0 +1,52 @@ + + +"; + + show_table_header("QUEUE"); +?> +"; + echo "\n"; + echo "Next time to checkHostDescription"; + echo "\n"; + while($row=mysql_fetch_row($result)) + { + $i++; + $itemid=$row[0]; + $time=$row[1]; + $description=$row[2]; + $host=$row[3]; + + if($col==1) + { + echo ""; + $col=0; + } else + { + echo ""; + $col=1; + } + echo "\n"; + echo "$time$host$description"; + echo "\n"; + echo ""; + echo "\n"; + } + echo ""; +?> + + + -- cgit