Ver Mensaje Individual
  #146 (permalink)  
Antiguo 28/03/2006, 18:03
SiMbO
 
Fecha de Ingreso: marzo-2006
Mensajes: 3
Antigüedad: 18 años, 8 meses
Puntos: 0
Alguien me podria ayudar a poner este codigo en movimiento con tamaño 462 px de ancho y 186 px de alto, porque yo lo he intentado de diferentes maneras y no hay manera. Muchas gracias:
Código PHP:
<?
define
('IN_PHPBB'true);
$phpbb_root_path './';
include(
$phpbb_root_path 'extension.inc');
include(
$phpbb_root_path 'common.'.$phpEx);

//
// Start session management
//
$userdata session_pagestart($user_ipPAGE_INDEX);
init_userprefs($userdata);
$auth_ary auth(AUTH_READAUTH_LIST_ALL$userdata);
while ( list(
$auth_forum_id$auth_level) = each($auth_ary) )
{
    if (!
$auth_level['auth_read'] )
    {
        
$auth_view_forums = ($auth_view_forums " p.forum_id<>" $auth_forum_id " and ");
        
$auth_view_forums1 = ($auth_view_forums1 " forum_id<>" $auth_forum_id " and ");
    }
}
$auth_view_forums="WHERE " $auth_view_forums;
?>
<style>
/* This is the outline round the main forum tables */
th    {
    color: #FFA34F; font-size: 11px; font-weight : bold;
    background-color: #006699; height: 25px;
    background-image: url(images/cellpic3.gif);
}

.forumline    { background-color: #000000; border: 2px #006699 solid; }
td.row1    { background-color: #EFEFEF;font-size: 9px;  }
td.row2    { background-color: #DEE3E7; font-size: 10px;  }
td.row2    { background-color: #DEE3E7; font-size: 10px;  }
td.row3    { background-color: #D1D7DC; }
font,th,td,p { font-family: Verdana, Arial, Helvetica, sans-serif;}
a:link,a:active,a:visited { text-decoration: none;color : #5E75AD; }
a:hover        { text-decoration: none; color : #DD6900; }
.titulo{font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color : #5E75AD;}
.titulo2{font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color : #FFFFFF;}
.sombras{filter:dropshadow(color=#000000,offx=1, offy=1, positive=1), glow(color=#000000, strength=5);}
.actual{border:2px solid #000000;background-color: #FFFFFF;font-size: 10px; }
.noactual{border:2px solid #FFFFFF;background-color: #EFEFEF;font-size: 10px; }
</style>
<body bgcolor="#000000" text="#5E75AD" topmargin="0" link="#5E75AD" vlink="#51689F" alink="#FFFFFF" leftmargin="0" bgproperties="fixed" marginwidth="0" marginheight="0" rightmargin="0" bottommargin="0">
<?
$sql_ini
=mysql_query("SELECT distinct topic_id FROM ".POSTS_TABLE." p $auth_view_forums 1 ORDER BY p.post_time DESC LIMIT 0,15");
while (
$assoc=mysql_fetch_assoc($sql_ini))
    foreach (
$assoc as $value)
    {

        
$sql=mysql_query("SELECT t.topic_last_post_id, t.topic_title, t.topic_id, t.topic_time, t.topic_replies, u.username,u.user_id, f.forum_name, f.forum_id, p.post_id, p.post_time FROM ".POSTS_TABLE." p, ".TOPICS_TABLE." t, ".USERS_TABLE." u, ".FORUMS_TABLE." f WHERE t.topic_poster=u.user_id AND t.topic_id=".$value." AND p.post_id=t.topic_last_post_id AND t.forum_id=f.forum_id");
        while (
$assoc=mysql_fetch_assoc($sql))
        {
            
$sql1=mysql_query("SELECT u.username FROM ".POSTS_TABLE." p, ".USERS_TABLE." u WHERE p.post_id=".$assoc['topic_last_post_id']." AND  p.poster_id=u.user_id");
            
$ultimo_usuario=mysql_fetch_assoc($sql1);
            
$ultimo_usuario=$ultimo_usuario['username'];
            
$fecha_ultimo=getdate($assoc['post_time']);
            
$fecha_ultimo=$fecha_ultimo["mday"]."-".$fecha_ultimo["mon"]."-".$fecha_ultimo["year"];
            
$fecha_abierto=getdate($assoc['topic_time']);
            
$fecha_abierto=$fecha_abierto["mday"]."-".$fecha_abierto["mon"]."-".$fecha_abierto["year"];
            
?>
        <span class='titulo'>
        [<a target='_blank' title="Pulsa Aquí Para Ver El Contenido De Este Mensaje" href="<?=$phpbb_root_path?>viewtopic.php?p=<?=$assoc['post_id']?>&highlight=#<?=$assoc['post_id']?>">
            <?=( ( strlen $assoc["topic_title"] ) > 45 ) ? ( substr $assoc["topic_title"] , 45 ) . "..." ) : $assoc["topic_title"] )?>
        </a>] <img border='0' src='templates/beats101/images/icon_newest_reply2.gif' width='18' height='9' alt='Nueva Respuesta'>
            <span class='titulo2'>Por: <a target='_blank' title="Pulsa Aquí Para Ver El Perfil De Este Usuario" href="<?=$phpbb_root_path?>profile.php?mode=viewprofile&u=<?=$ultimo_usuario?>">
            <?=$ultimo_usuario?>
        </a>
        <br />
        <span class='titulo2'>Sección Del Foro:
        <a target='_blank' title="Pulsa Aquí Para Ver Los Mensajes En Esta Sección" href="<?=$phpbb_root_path?>viewforum.php?f=<?=$assoc["forum_id"]?>">
            <?=$assoc["forum_name"]?>
        </a>

    (<?=$assoc["topic_replies"]?>
    Respuestas)<br /><br />
<?}
    }
?>
    </body>

Última edición por SiMbO; 28/03/2006 a las 19:25