ok
Direktori : /home2/selectio/www/y1jobportal.in/admin/data-tables/ |
Current File : //home2/selectio/www/y1jobportal.in/admin/data-tables/carrier-dt.php |
<?php include("../api/config/config.php"); $requestData= $_REQUEST; $condition=''; if(isset($_POST['date'])){ $condition.=" and date between '".$_POST['date']."' and '".$_POST['date']."' "; } /*Fetch Database column Details*/ $columns = array( 0 =>'id', 1 =>'id', 2 =>'firstname', 3 =>'mobile', 4 =>'email', 5 =>'password', 6 =>'city', 7 =>'address', ); /*Fetch All Data Start*/ $statement = $pdo->prepare("SELECT * FROM carrier ORDER BY id DESC"); $statement->execute(); $query = $statement->fetchAll(PDO::FETCH_ASSOC); $totalData = $statement->rowCount(); /*Fetch All Data End*/ /*Fetch Filter Data Start*/ $sql="SELECT * FROM carrier where 1=1 $condition"; if( !empty($requestData['search']['value']) ) { $sql.=" AND ( id LIKE '%".$requestData['search']['value']."%' "; $sql.=" OR firstname LIKE '%".$requestData['search']['value']."%' "; $sql.=" OR lastname LIKE '%".$requestData['search']['value']."%' "; $sql.=" OR email LIKE '%".$requestData['search']['value']."%' "; $sql.=" OR city LIKE '%".$requestData['search']['value']."%' ) "; } $statement = $pdo->prepare($sql); $statement->execute(); $query = $statement->fetchAll(PDO::FETCH_ASSOC); $totalFiltered = $statement->rowCount(); /*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=$requestData['start']+1; foreach($query as $row ) { // preparing an array $nestedData=array(); $client_details='<a ><b>'.$row['firstname'].'</b></a>'; if(isset($row['mobile'])){ $client_details.="<br>Mobile :<b>".$row['mobile']."</b>";} if(isset($row['email'])){ $client_details.="<br>Email :<b>".$row['email']."</b>";} $company_details='<a style="font-weight:900;color:blue;">'.($row['company_name'].' '.$row['company_name']).'</a>'; if(isset($row['address_line1'])){ $company_details.="<br>".$row['address_line1']."";} if(isset($row['address_line2'])){ $company_details.="<br>".$row['address_line2']."";} $nestedData[] = $i; $nestedData[] = $client_details; $nestedData[] = '<img src="'.$row['logo'].'" style="width: 65px;height: 65px;border-radius: 10px;">'; $nestedData[] = $company_details; if(isset($row['status'])=="Active"){$status="<span class='span-success'> Syn Completed </span>"; } else{$status="<span class='span-danger'> In-Active </span>";} $nestedData[] = $status; $data[] = $nestedData; $i++; } $json_data = array( "draw" => intval( $requestData['draw'] ), // for every request/draw by clientside , they send a number as a parameter, when they recieve a response/data they first check the draw number, so we are sending same number in draw. "recordsTotal" => intval( $totalData ), // total number of records "recordsFiltered" => intval( $totalFiltered ), // total number of records after searching, if there is no searching then totalFiltered = totalData "data" => $data // total data array ); echo json_encode($json_data); // send data as json format ?>