2006-03-27 05:37:27 +02:00
|
|
|
<?php
|
|
|
|
|
2006-07-11 10:49:21 +02:00
|
|
|
// Pandora - the Free monitoring system
|
|
|
|
// ====================================
|
|
|
|
// Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com
|
|
|
|
// Copyright (c) 2005-2006 Artica Soluciones Tecnologicas S.L, info@artica.es
|
|
|
|
// Copyright (c) 2004-2006 Raul Mateos Martin, raulofpandora@gmail.com
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
// Load global vars
|
2006-03-27 05:37:27 +02:00
|
|
|
require("include/config.php");
|
2006-07-11 10:49:21 +02:00
|
|
|
|
2006-03-27 05:37:27 +02:00
|
|
|
if (comprueba_login() == 0) {
|
|
|
|
|
|
|
|
echo "<h2>".$lang_label["incident_manag"]."</h2>";
|
2006-07-09 16:58:02 +02:00
|
|
|
echo "<h3>".$lang_label["find_crit"]." <a href='help/".$help_code."/chap4.php#43' target='_help' class='help'> <span>".$lang_label["help"]."</span></a></h3>";
|
2006-07-04 12:09:39 +02:00
|
|
|
echo "<div style='width:645'>";
|
|
|
|
echo "<div style='float:right;'><img src='images/pulpo_lupa.gif' class='bot' align='left'></div>";
|
2006-03-27 05:37:27 +02:00
|
|
|
?>
|
2006-07-04 12:09:39 +02:00
|
|
|
<div style='float:left;'>
|
2006-03-27 05:37:27 +02:00
|
|
|
<table width="500" cellpadding="3" cellspacing="3">
|
|
|
|
<form name="busqueda" method="post" action="index.php?sec=incidencias&sec2=operation/incidents/incident">
|
2006-06-26 18:09:20 +02:00
|
|
|
<td class='lb' rowspan="4" width="5">
|
2006-03-27 05:37:27 +02:00
|
|
|
<tr>
|
|
|
|
<td class="datos"><?php echo $lang_label["user"] ?>
|
|
|
|
<td class="datos">
|
2006-10-09 17:22:28 +02:00
|
|
|
<select name="usuario" class="w120">
|
2006-03-27 05:37:27 +02:00
|
|
|
<option value=""><?php echo $lang_label["all"] ?>
|
|
|
|
<?php
|
|
|
|
$sql1='SELECT * FROM tusuario ORDER BY id_usuario';
|
|
|
|
$result=mysql_query($sql1);
|
|
|
|
while ($row=mysql_fetch_array($result)){
|
|
|
|
echo "<option>".$row["id_usuario"];
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
2006-07-04 12:09:39 +02:00
|
|
|
<tr><td class="datos2"><?php echo $lang_label["free_text_search"] ?>
|
2006-07-11 10:49:21 +02:00
|
|
|
<td class="datos2"><input type="text" size="45" name="texto"></tr>
|
|
|
|
<tr><td class="datos" colspan="2"><i><?php echo $lang_label["free_text_search_msg"] ?></i></td></tr>
|
|
|
|
<tr><td colspan='3'><div class='raya'></div></td></tr>
|
2006-03-27 05:37:27 +02:00
|
|
|
<tr><td align="right" colspan="3">
|
|
|
|
<?php echo "<input name='uptbutton' type='submit' class='sub' value='".$lang_label["search"]."'>"; ?>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</table>
|
2006-07-04 12:09:39 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2006-03-27 05:37:27 +02:00
|
|
|
<?php
|
|
|
|
|
2006-10-09 17:22:28 +02:00
|
|
|
} // end page
|
2006-03-27 05:37:27 +02:00
|
|
|
?>
|