Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Economique
/
datatable
/
03
:
get_authors.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php require_once("./connect.php"); extract($_POST); $totalCount = $conn->query("SELECT * FROM `authors` ")->num_rows; $search_where = ""; if(!empty($search)){ $search_where = " where "; $search_where .= " first_name LIKE '%{$search['value']}%' "; $search_where .= " OR last_name LIKE '%{$search['value']}%' "; $search_where .= " OR email LIKE '%{$search['value']}%' "; $search_where .= " OR date_format(birthdate,'%M %d, %Y') LIKE '%{$search['value']}%' "; } $columns_arr = array("id", "first_name", "last_name", "email", "unix_timestamp(birthdate)"); $query = $conn->query("SELECT * FROM `authors` {$search_where} ORDER BY {$columns_arr[$order[0]['column']]} {$order[0]['dir']} limit {$length} offset {$start} "); $recordsFilterCount = $conn->query("SELECT * FROM `authors` {$search_where} ")->num_rows; $recordsTotal= $totalCount; $recordsFiltered= $recordsFilterCount; $data = array(); $i= 1 + $start; while($row = $query->fetch_assoc()){ $row['no'] = $i++; $row['birthdate'] = date("F d, Y",strtotime($row['birthdate'])); $data[] = $row; } echo json_encode(array('draw'=>$draw, 'recordsTotal'=>$recordsTotal, 'recordsFiltered'=>$recordsFiltered, 'data'=>$data ) );