Salve, ho questa script che dal database di phpBB mi preleva i topic di una sezione del forum per farmeli apparire a schermo sulla index realizzata da me che si trova in una directory differente dal forum
Codice PHP:
<?php
mysql_select_db(my_pokemondownload);
$query="SELECT * FROM phpbb_posts WHERE forum_id=4 ORDER BY topic_id DESC LIMIT 0,3";
$query=mysql_query($query);
while($post=mysql_fetch_assoc($query))
{
$data=$post['post_time'];
$data=date("d/m/Y H:i", $data);
$limit=150; //numero caratteri
$txt=$post['post_text'];
while($txt[$limit]!=" ")$limit--;
$txt=substr($txt,0,$limit);
$txt=str_replace("é", "é", $txt);
$txt=str_replace("è", "è", $txt);
$txt=str_replace("à", "à", $txt);
$txt=str_replace("ù", "ù", $txt);
$txt=str_replace("ò", "ò", $txt);
$sub=$post['post_subject'];
$sub=str_replace("é", "é", $sub);
$sub=str_replace("è", "è", $sub);
$sub=str_replace("à", "à", $sub);
$sub=str_replace("ù", "ù", $sub);
$sub=str_replace("ò", "ò", $sub);
echo "<div class=\"img_box\"></div><div class=\"title_box\"><div class=\"title_title\">".$sub."</div></div><div class=\"date_box\"><div class=\"date_date\">".$data."</div></div>
<div class=\"avviso\">".$txt." ...<a href=\"http://pokemondownload.altervista.org/forum/news-e-annunci-f4.html\">[Continua]</a></div>";
echo "<br /><br />";
}
?>
<h6>Si Ringrazia brunino per il sistema Avvisi.</h6>
<a href="http://pokemondownload.altervista.org/forum/news-e-annunci-f4.html">Altre News/Annunci --></a>
Il problema è che non mi riconosce gli accenti nemmeno se chi ho messo il replace
come posso risolvere?