| Current Path : /var/www/cesa.co.za/php/ |
| Current File : /var/www/cesa.co.za/php/nlc.php |
<?php
include("inc_db.php");
?>
<?php
echo "<p>";
echo "<!-- ";
var_dump($_REQUEST);
echo " -->";
extract($_REQUEST);
if ($action == "display")
{
?>
<h2>Your Search Results</h2>
You searched for:<br>
Type = <?=$ClientBodyTypeA?>, Province=<?=$ClientBodyGeographic?>, Name contains "<?=$ClientBodyName?>"<br>
<font size=1>If no convenor and/or members are shown in your search results, then the committee is currently vacant.</font><br>
<?php
$templatefilename = "matrixtemplate.htm";
include('php/querynlcmatrix.php');
$template->AddParam('showonscreen','1');
$template->AddParam('showheader','0');
$template->AddParam('showfeedback','0');
$template->AddParam('showreports','1');
if ($bRecordsFound > 0) {
$template->EchoOutput();
} else {
echo('<b>Your search criteria did not return any results.</b>');
}
}
?>