Salve!
Mi sono espresso male, ma volevo dire se mi aiutate ad inserire una stringa nel codice PHP che sto utilizzando per poter evidenziare in rosso l'utente che si logga (in pratica solo lui deve vedere il suo nome evidenziato)
Grazie
Dario
Codice PHP:
 <? 

$gara
mysql_query ("SELECT ROUND(c0+c1+c2+c3+c4+c5,1) AS mysomma, name FROM user WHERE c0>0 or c1>0 or c2>0 or c3>0 or c4>0 or c5>0 ORDER BY mysomma DESC");


$i=1;
while (
$usermysql_fetch_array($gara)) 
if (((
$i<4) && (date("w")==6))) {


echo 
"<tr bgcolor=\"#FFFF00\"><td width=\"70\"><center>" $i++ ."&ordm</center></td>";

echo 
"<td width=\"190\">[b]" $user['name'] . "[/b]</td>";

echo 
"<td width=\"90\"><p align=\"right\">[b]100[/b]</p></td>";

echo 
"<td width=\"140\"><center>" $user['mysomma'] . "</center></td></tr>";    





}else{

echo 
"<tr><td width=\"70\"><center>" $i++ ."&ordm</center></td>";

echo 
"<td width=\"190\">" $user['name'] . "</td>";

echo 
"<td width=\"90\"><p align=\"center\">in gara</p></td>";

echo 
"<td width=\"140\"><center>" $user['mysomma'] . "</center></td></tr>";


}

echo 
"</table></div></div></BODY>";


?>