![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
26/05/2009, 13:59
|
![Avatar de hoberwilly](http://static.forosdelweb.com/customavatars/avatar246730_1.gif) | | | Fecha de Ingreso: julio-2008 Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 16 años, 7 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, |