ok
Direktori : /home2/selectio/www/y1jobportal.in/admin/data-tables/ |
Current File : //home2/selectio/www/y1jobportal.in/admin/data-tables/state-data-table.php |
<?php include "../api/config/config.php"; $requestData = $_REQUEST; $condition=''; $status = $_POST['status']; if(isset($status) && $status!=""){ $condition.=" and state.status = '".$status."' "; } /*Fetch Database column Details*/ $columns = array( 0 =>'id', 1 =>'id', 2 =>'id', 3 => 'id', ); /*Fetch Filter Data Start*/ $sql="SELECT state.*, (SELECT COUNT(id) FROM district WHERE district.state_id=state.id) as district_count FROM `state` where 1=1 $condition"; if( !empty($requestData['search']['value']) ) { $sql.=" AND ( state.state_name LIKE '%".$requestData['search']['value']."%' )"; } $statement = $pdo->prepare($sql); $statement->execute(); $query = $statement->fetchAll(PDO::FETCH_ASSOC); $totalFiltered = $statement->rowCount(); $totalData = $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(); $action= "<div class='text-center'><div class='btn-group'>"; $action.="<a style='padding: 0px 0px 0px 5px; height: 30px; margin-right: 3px;' href='state-edit.php?id=".$row["id"]."' title='Edit Details' class='tip btn btn-warning btn-xs'> <i class='bi bi-pencil'></i> </a> "; $action.=" <button style='padding: 0px 0px 0px 5px; height: 30px; margin-right: 3px;' title='Delete Details' onClick='delete_Details(".$row["id"].")' class='tip btn btn-danger btn-xs'> <i class='bi bi-trash3'></i> </button>"; $action.="</div></div>"; $details1 = '<a ><b>'.$row['state_name'].'</b></a>'; $details2 = '<a ><b>'.$row['district_count'].'</b></a>'; if($row['status']=="1"){ $status="<span class='span-success'> Active </span>"; } else{ $status="<span class='span-danger'> In-Active </span>"; } $nestedData[] = $action; $nestedData[] = $i; $nestedData[] = $details1; $nestedData[] = $details2; $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 ?>