ok

Mini Shell

Direktori : /home2/selectio/www/caliberembedded.com/admin/api/
Upload File :
Current File : //home2/selectio/www/caliberembedded.com/admin/api/courses-data-table.php

<?php include"../config/config.php";


$requestData= $_REQUEST;


/*Fetch Database column Details*/
        $columns = array( 
            0 =>'id', 
            1 =>'course_name', 
            2 =>'course_type',
        );
        
$conditions="";



        
/*Fetch All Data Start*/        
        
    	$statement = $pdo->prepare("SELECT * FROM tbl_courses e where e.status!=0 ".$conditions." ORDER BY e.id DESC");
		$statement->execute();
		$query = $statement->fetchAll(PDO::FETCH_ASSOC);
		$totalData = $statement->rowCount();
        $totalFiltered = $totalData;
/*Fetch All Data End*/       
        
/*Fetch Filter Data Start*/    
         $sql="SELECT * FROM tbl_courses e where e.status!=0 ".$conditions;
         
        if( !empty($_REQUEST['search']) ) 
        {   
        	$sql.=" AND ( e.occupation_name LIKE '%".$_REQUEST['search']."%') ";
        }
        
/*Fetch Filter Data End*/       
        


         $sql.=" ORDER BY ". $columns[$requestData['order'][0]['column']]."   ".$requestData['order'][0]['dir']."  LIMIT ".$requestData['start']." ,".$requestData['length']."   ";
       	
        $statement = $pdo->prepare($sql);
        $statement->execute();
		$query = $statement->fetchAll(PDO::FETCH_ASSOC);

$data = array();
$i=1;
foreach( $query as $row ) {  // preparing an array
	$nestedData=array(); 
	$nestedData[] = "<div class='text-center'><div class='btn-group'>
	                    
		                <a style='padding: 6px;margin-right: 3px;' href='courses-edit.php?id=".$row["id"]."' title='Edit Course' class='tip btn btn-warning btn-xs'>
		                    <i class='fa fa-edit'></i>
		                </a> 
		                <button style='padding: 6px;margin-right: 3px;' value='11' title='Delete Course' onClick='delete_course(".$row["id"].")' class='tip btn btn-danger btn-xs'>
		                    <i class='fa fa-trash-o'></i>
		                </button>
		 </div></div>";
	$nestedData[] = $i;
	$nestedData[] = $row["course_name"];
	if($row["course_type"]==1){
	    $nestedData[] ='Popular Courses';
	}else{
	    $nestedData[] ='Online Courses';
	}
	//$nestedData[] = $row["updated_at"];
	
	$data[] = $nestedData;
	$i++;
}

$json_data = array(
			"draw"            => intval( $requestData['draw'] ),  
			"recordsTotal"    => intval( $totalData ),  
			"recordsFiltered" => intval( $totalFiltered ), 
			"data"            => $data   
			);

echo json_encode($json_data); 




?>

Zerion Mini Shell 1.0