Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/08/2004, 03:42
kenshindark
Invitado
 
Mensajes: n/a
Puntos:
imagenes en web modular...??

Hola.
Estoy empezando a crear mi web en php y he seguido un buen tutorial de zonaphp que me recomendasteis aquí: http://www.zonaphp.com/index.php?mod...id=34&pagina=1 .

El layout que he creado ha sido así:

<html>
<head>
<title></title>
<basefont color="#FFFFFF" face="Verdana" />
</head>
<body bgcolor="#2e2e2e">
<?php include('includes/header.html'); ?>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr><td width="140" bgcolor="#2e2e2e">
<?php include('includes/menuizq.html'); ?>
</td>
<td>
<?
if (file_exists( $path_modulo )) include( $path_modulo );
else die('Error al cargar el módulo <b>'.$modulo.'</b>. No existe el archivo <b>'.$conf[$modulo]['archivo'].'</b>');
?>
</td>
<td width="140" bgcolor="#2e2e2e">
<?php include('includes/menuder.html'); ?>
</td></tr></table>
<?php include('includes/footer.html'); ?>
</body>
</html>

En los menus (menuizq y menuder) he incluido imagenes y no se me ven. Pero no es como sale habitualmente con un cuadradito y la "X" en medio sino que es una imagen vacia de la misma longitud de la imagen que deberia salir pero vacía, hueca.
Que sucede?