tengo un problemilla con un script que ya tenia de antes y me funcionaba y no se porque en esta ocasion no:
Código:
En las celdas de la tabla me devuelve cosas asi --> ".$rs['Nombre']."<? $conexion=mysql_connect("localhost","root",""); mysql_select_db("ccc",$conexion); $sql=mysql_query("select * from ventas order by id desc",$conexion); ?> </p><style type="text/css"> <!-- body { background-color: #FFFFCC; } --> </style> <table width="100%" border="1" align="center"> <tr> <td align="center">Fecha (año-mes-dia)</td> <td align="center">Nombre</td> <td align="center">Precio</td> <td align="center">Habitaciones</td> <td align="center">Tipo de Vivienda</td> </tr> <? while($rs=mysql_fetch_array($sql)) { echo "<tr>" ."<td>".$rs['fecha']."</td>" ."<td>".$rs['Nombre']."</td>" ."<td>".$rs['Precio']."</td>" ."<td>".$rs['Habitaciones']."</td>" ."<td>".$rs['TipoVivienda']."</td>" ."</tr>"; } ?> </table>
Alguien ve fallos en el codigo??