Ver Mensaje Individual
  #5 (permalink)  
Antiguo 30/05/2012, 09:59
Avatar de patriciomase
patriciomase
 
Fecha de Ingreso: abril-2012
Ubicación: Mar del Plata
Mensajes: 323
Antigüedad: 12 años
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);
?>