buenos dias amigos
agradeceria mucho me dijeran como podria hacer la tabla de celdas tipo excel para visualizar mis resultados
http://www.grupogba.com/registros.php
gracias
| ||||
tabla de resultados buenos dias amigos agradeceria mucho me dijeran como podria hacer la tabla de celdas tipo excel para visualizar mis resultados http://www.grupogba.com/registros.php gracias |
| ||||
Respuesta: tabla de resultados <?php $conexion = mysql_connect("localhost", "mihueb_kijosh", "clave"); mysql_select_db("mihueb_demo2", $conexion); $queEmp = "SELECT * FROM empresa ORDER BY nombre ASC"; $resEmp = mysql_query($queEmp, $conexion) or die(mysql_error()); $totEmp = mysql_num_rows($resEmp); ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Agenda</title> <style type="text/css"> <!-- body { font-family: "Trebuchet MS", Tahoma, Verdana; font-size: 12px; font-weight: normal; color: #666666; text-decoration: none; padding: 120px; } h4 { color: #CC0000; } --> </style> </head> <body> <table> <caption><h4>Agenda</h4></caption> <?php if ($totEmp> 0) { while ($rowEmp = mysql_fetch_assoc($resEmp)) { echo "<tr>"; echo "<td><strong>".$rowEmp['nombre']."</strong></td>"; echo "<td><strong>".$rowEmp['direccion']."</strong></td>"; echo "<td><strong>".$rowEmp['telefono']."</strong></td>"; echo "<td>Imagen: ".$rowEmp['imagen']."</td>"; echo "</tr>"; } } ?> </table> </body> </html> A ver si con esto te vale.
__________________ Dando cabezados se aprende... |
| ||||
Respuesta: tabla de resultados gracias aliza me salio esto con tu codigo http://www.grupogba.com/registros.php ahora ya estoy buscando la info correspondiente para que los nombres automaticamente me salgan con mayuscula en la primera letra y pueda ver las fotos gracias <?php $conexion = mysql_connect("localhost", "mihueb_kijosh", "ninguna"); mysql_select_db("mihueb_demo2", $conexion); $queEmp = "SELECT * FROM empresa ORDER BY nombre ASC"; $resEmp = mysql_query($queEmp, $conexion) or die(mysql_error()); $totEmp = mysql_num_rows($resEmp); ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Agenda</title> <style type="text/css"> <!-- body { font-family: "Trebuchet MS", Tahoma, Verdana; font-size: 12px; font-weight: normal; color: #666666; text-decoration: none; padding: 120px; } h4 { color: #CC0000; } --> </style> </head> <body> <table width="800" border="3" bordercolor="#000000"> <caption><h4 align="left">Agenda</h4></caption> <div align="left"> <?php if ($totEmp> 0) { while ($rowEmp = mysql_fetch_assoc($resEmp)) { echo "<tr>"; echo "<td>".$rowEmp['nombre']."</td>"; echo "<td>".$rowEmp['direccion']."</td>"; echo "<td>".$rowEmp['telefono']."</td>"; echo "<td>Imagen: ".$rowEmp['imagen']."</td>"; echo "</tr>"; } } ?> </div> </table> </body> </html> |