Current File : /home/inlingua/www/icentex/evaluation/php/course_questionaire_list_old_2_8_2017.php
<?php require_once("include/config/config.php");
include_functions(array('url', 'database','input','paging','date','email','file_handling','http','login','xml','image_manipulation', 'admin'));
$function=array('url', 'database','input');
include_functions($function);

		$QueryObj = new query('end_of_course');
		
		if(isset($_POST['submit']) && $_POST['submit']=='Find')
		{
		   if($_POST['start_date'] !='' && $_POST['end_date'] !='')
			{
			    $QueryObj->Where="where add_date between '".$_POST['start_date']."' and '".$_POST['end_date']."' order by id desc";	
			}
		    
		}else {
		 $QueryObj->AllowPaging=true;
		$QueryObj->PageNo=isset($_GET['p'])?$_GET['p']:1;
		$QueryObj->PageSize=25; 	
		 $QueryObj->Where=" where id !='' order by id desc";	
			
		}
		$QueryObj->DisplayAll();
		$count_project = $QueryObj->GetNumRows();


		
?>