codice html da modificare

Mauro Guardiani

Utente Attivo
31 Lug 2012
32
0
6
ciao a tutti non riesco a modificare questo codice html, chi sa aiutarmi?
la figura che rappresenta il codice è questo: http://img824.imageshack.us/img824/1305/immaginepkn.jpg
in pratica dovrei togliere comment, like, e welcom e ridimensionare l'avatar.

grazie.
---------------------------------------------------------------------------------------------------------


PHP:
 if (!$client['id']) {
    echo '';
}
echo '

<div class="block">
<div class="block_title">'.t('Community Activities').'</div>

<div class="block_content">
<script type="text/javascript" src="'.uhome().'/js/jquery.vtricker.js"></script>
<script>
jQuery(document).ready(function($) {
    $("#recent_activites").fadeIn();
    $(\'#recent_activites\').vTicker({
       speed: 800,
       pause: 5000,
           showItems:8,
       animation: \'strong\',
       mousePause: false,
       height: 190,
       direction: \'down\'   
    });
            });
</script>
<style>
#recent_activites li{
        margin:0;
        padding:0;
        }
</style>
<div id="recent_activites" style="display:none">    
<ul>
';
$res = sql_query("SELECT s.*,u.username,u.avatar from  `".tb()."streams` as s left join ".tb()."accounts as u on u.id =s.uid where s.hide!=1 order by s.id desc limit 20 ");
while ($stream = sql_fetch_array($res)) {
    $stream['attachment'] = unserialize($stream['attachment']);
    echo '<li>'.stream_display($stream,'simple').'</li>';
}
echo '</ul>

<div style="position:absolute;left:0;bottom:0px;height:20px;width:0%;background:url('.uhome().'/files/common_css/fade.png)repeat-x "> </div></div>

</div></div>';
--------------------------------------------------------------------------------------------------------------------------
 
Ultima modifica di un moderatore:
ciao
non vorrei dire una put....ta, ma secondo me dovresti andare a vedere cosa ti restituisce (non vedo da dove altra parte salta fuori quello che vuoi togliere)
$stream['attachment']
e in funzione eliminare quello che non ti serve, es.
$stream['attachment']=str_replace("", "like", $stream['attachment']);

p.s.
racchiudi sempre il codice negli appositi tag (seconda riga formattazione post, ultime 3 iconcine, nell'ordine CODE HTML PHP)
 

Discussioni simili