20/05/2004, 11:37
|
| | Fecha de Ingreso: mayo-2004 Ubicación: Culiacán, Sinaloa, Mexico
Mensajes: 46
Antigüedad: 20 años, 6 meses Puntos: 0 | |
perdon es este para enlistar los datos que tengoi
<?php
$db = mysql_connect("localhost", "root")OR die ("No puedo conectarme
a la base de datos");
mysql_select_db("listado",$db);
$result=mysql_connect("localhost");
?>
<html>
<head>
<title>Listado telefonico</title>
</head>
<body>
<h2>Listado de Números Telefónicos</h2>
<table BORDER=1>
<tr>
<th>Nombre</th><th>Tel_casa</th><th>Tel_trabajo</th><th>Tel_Celular</th><th>Domicilio</th><th>Ciudad</th>
</tr>
<?php
// bucle de listado
$linea=0;
//numero de filas
while ("$fila=@mysql_fetch_array($result,$linea)"){
echo "<tr>";
$Nombre=$fila[0];
$Tel_casa=$fila[1];
$Tel_trabajo=$fila[2];
$Tel_cel=$fila[3];
$Domicilio=$fila[4];
$Ciudad=$fila[5];
printf"<tr>";
<td align=right>$telefono</td>";
printf"<tr>";
$linea++;
}
?>
</table>
</body>
</html> |