PHP - Creación de reportes

 
Vista:
sin imagen de perfil
Val: 396
Bronce
Ha mantenido su posición en PHP (en relación al último mes)
Gráfica de PHP

Creación de reportes

Publicado por Robokick (156 intervenciones) el 12/11/2020 20:50:13
AMIGOS PODRIAN AYUDARME EN COMO PUEDO CREAR REPORTES CON PHP QUIERO HACER UN REPORTECON TODOS MIS CLIENTES REGISTRADOS Y OTRO REPORTE BUSCANDO POR FECHA

HASTA EL MOMENTO HE HECHO SOLO UN LISTADO PERO ME GUSTARIA MEJORARLO INCLUSIVE HASTA PONERLE ALGUN ESTILO

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
<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title>Listado de Clientes</title>
<head>
<body>
<?php
$conexion=mysqli_connect("localhost","root","","anco") or die ("error");
$registro=mysqli_query($conexion,"select * from clientes")or die ("error".mysqli_error($conexion));
 
while($reg=mysqli_fetch_array($registro))
 
{
	echo "Codigo"." ". $reg["Cod_cli"]."<br>";
	echo "Nombre"." ". $reg["Nom_cli"]. "<br>";
	echo "Teléfono"." ".$reg["Fono_cli"]."<br><br>";
}
 
mysqli_close($conexion);
 
?>
 
</body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil
Val: 396
Bronce
Ha mantenido su posición en PHP (en relación al último mes)
Gráfica de PHP

Creación de reportes

Publicado por Robokick (156 intervenciones) el 13/11/2020 00:28:16
Alguien debe tener conocimiento o tener su propio formando hacer reportes me gusta2si pudieran compartir ese conocimiento
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar