el problema es el siguiente:
Deseo:(vea la imagen por favor.para verlas pegue los link en el explorador)
Código:
Pero me encuentro con estoimg8.imageshack.us/img8/7285/requeridotm5.gif
Cita:
adjunto estas dos imagen para mayor entendimiento.img14.imageshack.us/img14/4578/malowi0.gif
me parece que el problema viene de un include que puse:
Código:
porque al desactivar este. todo anda ok.img14.imageshack.us/img14/8741/pagebw9.jpg
Código:
img220.imageshack.us/img220/5654/30593472.jpg
esto es lo que trae ese include que es el de ssi.php de smf forum (modificado por mi)
Código PHP:
// recientes post para smf
echo'<div style=" font-family:Arial, Helvetica, sans-serif; font-size:90%; width:309px">
<div style="background-image:url(../recursos/publico/Baner/barra.png); height:37px;">
<div style="margin-top:0px; margin-left:25px; width:160px; padding-top:12px;"> <strong>Ultimos Post de Foro</strong>
</div>
</div>
';
if ($output_method != 'echo' || empty($posts))
return $posts;
foreach ($posts as $post)
echo '
<div style="width:309px; height:60px; background-image:url(../recursos/publico/Baner/fondoultimoforo.jpg);" >
<div style="margin-left:15px;padding-top:10px;">
<strong>', $post['board']['link'], '</strong><br>
• <a href="', $post['href'], '">', $post['subject'], '</a>
', $txt[525], ' ', $post['poster']['link'], '
', $post['new'] ? '' : '<a href="' . $scripturl . '?topic=' . $post['topic'] . '.msg' . $post['new_from'] . ';topicseen#new"><img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/new.gif" alt="' . $txt[302] . '" border="0" /></a>', '<br>
• ', $post['time'], '
</div>
</div>';
echo '
<div style="width:309px; height:17px; background-image:url(../recursos/publico/Baner/barraboton.gif);">
<div>';
}