Cita:
Iniciado por elgoncho99 Proba usando un array asociativo devuelto por mysql_fetch_array
Tene cuidado porque tambien habias escrito mal un par de tags HTML pusiste </th> en lugar de <tr>.
Código PHP:
Ver originalecho "<table id='td' border='1'
bordercolor='#000000'
name='resultado'
cellpadding='0'
cellspacing='0'>
<tr>
<th>TELEFONO</th>
<th>CEDULA</th>
<th>NOMBRE</th>
<th>DISTRITO</th>
<th>DIRECCION</th>
<th>SALARIO</th>
</tr>";
{
echo "<tr>";
echo "<td>".$fila['telefono']."</td>";
echo "<td>".$fila['cedula']."</td>";
echo "<td>".$fila['nombre']."</td>";
echo "<td>".$fila['distrito']."</td>";
echo "<td>".$fila['direccion']."</td>";
echo "<td>".$fila['salario']."</td>";
echo "</tr>";
}
echo "</table>";
Esperso sirva, saludos.
ya lo probe de esa manera y no me da resultados me sale la tabla bien pero vacia :(
no se que esta MAL