-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathload.php
128 lines (102 loc) · 3.63 KB
/
load.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
/**
* Script para cargar datos de lado del servidor con PHP y MySQL
*
* @author mroblesdev
* @link https://github.com/mroblesdev/server-side-php
* @license: MIT
*/
require 'config.php';
// Columnas a mostrar en la tabla
$columns = ['no_emp', 'nombre', 'apellido', 'fecha_nacimiento', 'fecha_ingreso'];
// Nombre de la tabla
$table = "empleados";
// Clave principal de la tabla
$id = 'no_emp';
// Campo a buscar
$campo = isset($_POST['campo']) ? $conn->real_escape_string($_POST['campo']) : null;
// Filtrado
$where = '';
if ($campo != null) {
$where = "WHERE (";
$cont = count($columns);
for ($i = 0; $i < $cont; $i++) {
$where .= $columns[$i] . " LIKE '%" . $campo . "%' OR ";
}
$where = substr_replace($where, "", -3);
$where .= ")";
}
// Limites
$limit = isset($_POST['registros']) ? $conn->real_escape_string($_POST['registros']) : 10;
$pagina = isset($_POST['pagina']) ? $conn->real_escape_string($_POST['pagina']) : 0;
if (!$pagina) {
$inicio = 0;
$pagina = 1;
} else {
$inicio = ($pagina - 1) * $limit;
}
$sLimit = "LIMIT $inicio , $limit";
// Ordenamiento
$sOrder = "";
if (isset($_POST['orderCol'])) {
$orderCol = $_POST['orderCol'];
$oderType = isset($_POST['orderType']) ? $_POST['orderType'] : 'asc';
$sOrder = "ORDER BY " . $columns[intval($orderCol)] . ' ' . $oderType;
}
// Consulta
$sql = "SELECT " . implode(", ", $columns) . "
FROM $table
$where
$sOrder
$sLimit";
$resultado = $conn->query($sql);
$num_rows = $resultado->num_rows;
// Consulta para total de registro filtrados
$sqlFiltro = "SELECT COUNT($id) AS num FROM $table $where";
$resFiltro = $conn->query($sqlFiltro);
$row_filtro = $resFiltro->fetch_array();
$totalFiltro = $row_filtro['num'];
// Consulta para total de registro
$sqlTotal = "SELECT count($id) FROM $table ";
$resTotal = $conn->query($sqlTotal);
$row_total = $resTotal->fetch_array();
$totalRegistros = $row_total[0];
// Mostrado resultados
$output = [];
$output['totalRegistros'] = $totalRegistros;
$output['totalFiltro'] = $totalFiltro;
$output['data'] = '';
$output['paginacion'] = '';
if ($num_rows > 0) {
while ($row = $resultado->fetch_assoc()) {
$output['data'] .= '<tr>';
$output['data'] .= '<td>' . $row['no_emp'] . '</td>';
$output['data'] .= '<td>' . $row['nombre'] . '</td>';
$output['data'] .= '<td>' . $row['apellido'] . '</td>';
$output['data'] .= '<td>' . $row['fecha_nacimiento'] . '</td>';
$output['data'] .= '<td>' . $row['fecha_ingreso'] . '</td>';
$output['data'] .= '<td><a class="btn btn-warning btn-sm" href="editar.php?id=' . $row['no_emp'] . '">Editar</a></td>';
$output['data'] .= "<td><a class='btn btn-danger btn-sm' href='elimiar.php?id=" . $row['no_emp'] . "'>Eliminar</a></td>";
$output['data'] .= '</tr>';
}
} else {
$output['data'] .= '<tr>';
$output['data'] .= '<td colspan="7">Sin resultados</td>';
$output['data'] .= '</tr>';
}
// Paginación
if ($totalRegistros > 0) {
$totalPaginas = ceil($totalFiltro / $limit);
$output['paginacion'] .= '<nav>';
$output['paginacion'] .= '<ul class="pagination">';
$numeroInicio = max(1, $pagina - 4);
$numeroFin = min($totalPaginas, $numeroInicio + 9);
for ($i = $numeroInicio; $i <= $numeroFin; $i++) {
$output['paginacion'] .= '<li class="page-item' . ($pagina == $i ? ' active' : '') . '">';
$output['paginacion'] .= '<a class="page-link" href="#" onclick="nextPage(' . $i . ')">' . $i . '</a>';
$output['paginacion'] .= '</li>';
}
$output['paginacion'] .= '</ul>';
$output['paginacion'] .= '</nav>';
}
echo json_encode($output, JSON_UNESCAPED_UNICODE);