elemplo:
'' <--- me salen asi
cedula nombre apellido
1 x x
2 y y
Código PHP:
Ver original
<?php include ("../conexion/conecta.php"); ?> <table bordercolor="#D2D2D2" cellpadding="1" cellspacing="0" align=center border="1" width="100%"> <tr> <th>Cedula </th> <th>Nombres</th> <th>Apellidos</th> </tr><?php { echo '<tr><td>'.$row["cedula"].'</td>'; echo '<td>'.$row["nombres"].'</td>'; echo '<td>'.$row["apellidos"].'</td>'; } ?>