![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
30/05/2012, 09:59
|
![Avatar de patriciomase](http://static.forosdelweb.com/customavatars/avatar461503_1.gif) | | | Fecha de Ingreso: abril-2012 Ubicación: Mar del Plata
Mensajes: 323
Antigüedad: 12 años, 9 meses Puntos: 34 | |
Respuesta: Php html mysql para qué tenes el código de conexión dentro de una tabla html??? cambiá esto:
<!--TABLA DE CONEXION-->
<table>
<TR><TD>
<!--CONEXION A LA BASE DE DATOS-->
<?php
include("Conectarse.php");
$link=Conectarse();
$result=mysql_query("
SELECT *
FROM ticket
ORDER BY tic_numero desc
LIMIT 0,50",$link);
?>
</TD>
</TR>
</table> por esto otro:
<?php
include("Conectarse.php");
$link=Conectarse();
$result=mysql_query("
SELECT *
FROM ticket
ORDER BY tic_numero desc
LIMIT 0,50",$link);
?> |