giorgio scusa se mi intrometto nella discussione ma interessa anche me, non funziona
ho messo
[php]
<?php
echo " <table width="100%" border="1"> <tr>
<td height="15" >Ultime dal Nostro Forum</td>
<td height="15" >Autore</td>
<td height="15" >Risposte</td>
<td height="15" >Visite</td>
</tr> ";
mysql_pconnect("hosr", "name","password") or die("Ci Scusiamo Per l'incoveniente tornero on-line tra 10 minuti");
mysql_select_db("Sql87520_1") or die("Impossibile selezionare il database");
$query = "SELECT * FROM VB_thread WHERE forumid=6 ORDER BY threadid DESC LIMIT 20";
$risultati= mysql_query($query);
while($tmp = mysql_fetch_assoc($risultati))
{
$target1=$tmp["threadid"];
$target2=$tmp["title"];
$replycount=$tmp["replycount"];
$postusername=$tmp["postusername"];
$postuserid=$tmp["postuserid"];
$lastposter=$tmp["lastposter"];
$views=$tmp["views"];
$valutazione=$tmp["votetotal"];
echo"<tr><td align="left">
<a href="http://www.gamesrulez.com/forum/showthread.php?t=$target1">$target2</a> </td><td> <b>$postusername</b> </td><td > <b>$replycount</b> </td><td > <b>$views</b></td><tr>";
}
echo " </table><br>";
[/php]