Ver Mensaje Individual
  #15 (permalink)  
Antiguo 26/05/2009, 13:59
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 15 años, 9 meses
Puntos: 2
Respuesta: Cual es la manera correcta de programar print de imagen?

Este es mi codigo:
tengo un index:
<?php include("include/cabecera.php"); ?>
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<td valign="top"><br>
<?php
if($p==1){
include("include/a.php");
}elseif($p==2){
include("include/b.php");
}else{
include("include/c.php");
}
?>
</td>
</table>
<br><?php include("include/pie.php"); ?>
</body>
</html>

y en la cabecera tengo la imagen en mencion:
<table border="0" cellpadding="0" cellspacing="0" align="center" width="100%">
<tr>
<td colspan="8" width="100%"><img src="img/LOGO.jpg" style="width:100%;height:100%"></td>
</tr>
<tr>
<td height="32" width="14%" align="center">B</td>
<td align="center" valign="middle" width="10%">a</td>
<td align="center" width="12%">a</td>
<td align="center" width="10%">a</td>
<td align="center" width="12%">a</td>
<td align="center" width="10%">a</td>
<td align="center" width="10%">a</td>
<td align="center" width="22%">a</td>
</tr>
</table>

En algo estoy equivocado, que estoy ignorando???

Gracias,