HOla amigos eh escrito este codigo y aparte de compartirlo por si alguien le hiciese falta o lo que sea queria indicar que tiene un problemilla aver si alguien me lo soluciona:
se trata de un bloke central en el k se muestran 2 consultas a 2 tablas de la base de datos mediante un select recoge los datos de la BD y despues los muestra con una marquesina y si la BD esta vacia pues escribe un mensaje diciendo k esta vacia y un link para agregar un usuario hasta hay bien funciona todo pero cuando hay mas de un usuario en la BD zas¡¡¡¡ me descoloca todas las tablas y lo pone donde le sale de los wuitos¡¡¡
alguien sabe por ke???
aki esta el codigo
Código PHP:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
.tablas {
font-weight: bold;
}
.tablas {
text-align: center;
}
</style>
</head>
<body>
<?php
require ('config.php');
$clientess = mysql_query("SELECT * FROM clientes order by codigo ASC");
$numeroclientes = mysql_num_rows($clientess);
if ($numeroclientes < 1 ) {
echo "<table width='90%' border='0' align='center'>";
echo " <tr>";
echo " <td width='50%' height='177'><table width='55%' border='0' height='100%' align='center'>";
echo " <tr>";
echo " <td height='35' class='tablas'><b><center><table border='1'><tr><td>Ultimos clientes agregados</td></tr></table></td>";
echo " </tr>";
echo " <tr>";
echo " <td height='145'><font color=\'#000000\'><font size=\'1\'><font face=\'Verdana\'><center><b><table border='1' align='center'><tr><td align='center'>Actualmente no dispongo<br>de pedidos en la base de datos<br>deseas agregar uno?<br>pincha <a href='clientes.php'><font size='+2'><br>aki</td></tr></table></font></font></td>";
echo " </tr>";
echo " </table></td>";
} else {
while($row=mysql_fetch_array($clientess))
{
$codigo=$row["codigo"];
$nombre =$row["nombre"];
echo "<table width='90%' border='0' align='center'>";
echo " <tr>";
echo " <td width='50%' height='177'><table width='55%' border='0' height='100%' align='center'>";
echo " <tr>";
echo " <td height='35' class='tablas'><b><center><table border='1'><tr><td>Ultimos clientes agregados</td></tr></table></td>";
echo " </tr>";
echo " <tr>";
echo " <td height='145'><font color=\'#000000\'><font size=\'1\'><font face=\'Verdana\'><marquee direction='up' scrollamount='+5' onmouseover='this.stop()' onmouseout='this.start()'><a href='mostrar.php'><table border='1' align='center'><tr><td align='center'>$codigo<hr><br>$nombre</a></marquee></td></tr></table></font></font></td>";
echo " </tr>";
echo " </table></td>";
}
}
?>
<?php
$vacas = mysql_query("SELECT *, DATE_FORMAT(fechafin,'%d/%m/%Y') as fechafin FROM vacaciones order by codigo ASC");
$clientesvacas = mysql_num_rows($vacas);
if ($clientesvacas < 1 )
{
echo " <td width='50%'><table width='90%' border='0' height='100%' align='center'> ";
echo " <tr>";
echo " <td height='35' class='tablas'><b><center><table border='1'><tr><td>Clientes de vacaciones</td></tr></table></td>";
echo " </tr>";
echo " <tr>";
echo " <td height='145'><font color=\'#000000\'><font size=\'1\'><font face=\'Verdana\'><center><b><table border='1' align='center'><tr><td align='center'>Actualmente no dispongo<br>de clientes en vacaciones en la base de datos<br>deseas agregar uno?<br>pincha <a href='agrega_vacas.php'><font size='+2'><br>aki</td></tr></table></font></font></td>";
echo " </tr>";
echo " </table></td>";
echo " </tr>";
echo "</table>";
} else {
while($row=mysql_fetch_array($vacas))
{
$cliente=$row["codigo"];
$fechavuelta =$row["fechafin"];
echo " <td width='50%'><table width='90%' border='0' height='100%' align='center'> ";
echo " <tr>";
echo " <td height='35' class='tablas'><b><center><table border='1'><tr><td>Clientes de vacaciones</td></tr></table></td>";
echo " </tr>";
echo " <tr>";
echo " <td height='145'><font color=\'#000000\'><font size=\'1\'><font face=\'Verdana\'><marquee direction='up' scrollamount='+5' onmouseover='this.stop()' onmouseout='this.start()'><a href='mostrar_vacas.php'><table border='1' align='center'><tr><td align='center'>El codigo $cliente<br>volvera el $fechavuelta</a></marquee></td></tr></table></font></font></td>";
echo " </tr>";
echo " </table></td>";
echo " </tr>";
echo "</table>";
}
}
?>
</body>
</html>