<?php
/**
* @version $Id: evidenze.php,v 1.1 2003/11/23 06:05:36 freedev Exp $
* @author Vincenzo D'Amore <hide@address.com>
* @package wa_segreteria
*/
/**
*
*/
require_once("wacommon.inc.php");
require_once("./includes/databases.inc.php");
require_once("./includes/modifyform.inc.php");
require_once("./includes/searchform.inc.php");
require_once("./includes/waform.inc.php");
require_once("./includes/wafields.inc.php");
CheckSession();
PrintHTMLHeader("Evidenze", "");
?>
<body class="BodyStandard">
<?php include("header.php"); ?>
<!--- Main Table Start -->
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td></td>
</tr>
<tr>
<td>
<!--- Content Table Start -->
<?php
if (!empty($_GET["IdForm"]))
{
$_SESSION["gIdForm"] = $_GET["IdForm"];
if ($_SESSION["gIdCurrentForm"] != $_SESSION["gIdForm"])
{
$_SESSION["gIdCurrentForm"] = $_SESSION["gIdForm"];
ClearAllForms();
}
}
$_SESSION["giIdContext"] = $_SESSION["giIdMenu"];
$form = new WAForm();
if ($form->Init($_SESSION["gIdForm"], $_SESSION["giIdContext"]) )
{
$sSql = "";
$sMessage = "";
$form->m_Form["WAActions"] = "";
if (CreateSearchSql($form->m_Form, "", "", $sSql, $sMessage))
{
if (!strstr($sSql, " WHERE "))
$sSql .= " WHERE ";
else
$sSql .= " AND ";
$sSql .= " tbpratiche.Evidenza < SYSDATE()";
$sSql .= " ORDER BY tbpratiche.Evidenza desc";
// echo $sSql;
$iCurrentPage = 0;
$iRowsPerPage = 100;
echo "<table border='0' cellpadding='0' cellspacing='0' width='100%' class='FormTableE'>";
echo "<tr><td colspan='2' class='FormTitleE'>Evidenze</td></tr>";
echo "</table>";
// echo "<tr><td colspan='2'>";
CreateSearchResults($form->m_Form, $sSql, $iCurrentPage, $iRowsPerPage);
// echo "</td></tr>";
}
}
?>
<!--- Content Table End -->
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
<!--- Main Table End -->
<?php include("footer.php"); ?>
</body>
</html>