quiero mostrar una tabla seguida de una imagen ok.
pero resulta que la imagen no sale como deberia ser.
(si elimino la parte del codigo de la tabla la imagen se muestra sin inconvenientes)
aqui esta mi codigo:
Código PHP:
<?php
include_once ('C:\AppServ\www\conexion.php');
$con=conectarse();
$result = mssql_query("SELECT * FROM Seguridad");
echo "<table border='1'>
<TITLE>Seguridad</TITLE>
<H1>Informacion de Seguridad</H1>
<tr>
<th>Linea</th>
<th>Estado de la Aplicacion</th>
<th>Celdas en Servicio</th>
<th>Celdas fuera de Servicio</th>
</tr>";
while($row = mssql_fetch_array($result))
{
echo "<tr>";
echo "<td bgcolor=gray align=center>" . $row['Linea'] . "</td>";
echo "<td bgcolor=gray align=center>" . $row['Estado'] . "</td>";
echo "<td bgcolor=green align=center>" . $row['En_servicio'] . "</td>";
echo "<td bgcolor=red align=center>" . $row['Sin_servicio'] . "</td>";
echo "</tr>";
}
echo "</table>";
//MOSTRAR IMAGEN
$imagepath="EstadoLin1.jpg";
$image=imagecreatefromjpeg($imagepath);
imagejpeg($image);
?>