-
Notifications
You must be signed in to change notification settings - Fork 0
/
ccl_ver.php
41 lines (41 loc) · 1.23 KB
/
ccl_ver.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
<?php
include('funciones.php');
include('datos.php');
if (!$_GET['accion']){
$accion='categoria';
} else {
$accion=$_GET['accion'];
}
switch($accion){
case 'categoria':
categoria();
break;
}
function categoria(){
encabezado('Clientes por categoria');
boton("Volver","geined.py?accion=academico");
// Datos de la categoria
$sql_ccl = 'SELECT * FROM cat_clientes WHERE id="'.$_GET['id'].'"';
$res_ccl = mysql_query($sql_ccl);
$row_ccl = mysql_fetch_row($res_ccl);
echo '<h2>'.$row_ccl[1] . '</h2>';
encabezado_tabla(array("Nº","Nombre","Telefono","Notas","Acciones"));
$sql_cli = 'SELECT * FROM clientes WHERE categoria_id="'.$_GET['id'].'"';
$res_cli = mysql_query($sql_cli);
$i = 0;
while($fil_cli = mysql_fetch_array($res_cli)){
fila_alterna($i);
celda($fil_cli['id']);
celda($fil_cli['nombre']);
celda($fil_cli['telefono']);
celda($fil_cli['notas']);
echo '<td>';
boton("Detalles",'lla.php?accion=listado&id='.$fil_cli['id']);
boton("Editar",'cli.py?accion=editar&id=' . $fil_cli['id']);
echo '</td></tr>';
$i = $i +1;
}
fin_tabla();
boton('Volver','geined.py?accion=academico');
}
?>