<html>
<link rel="stylesheet" href="style.css" type="text/css">
<body bgcolor="#ECECE1" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="images/bg2.gif">
</body>
<?
include("config.inc.php");
mysql_connect($host,$user,$passwd);
    
$sql "select User from webboard_member order by Date DESC limit 0,3";
    
$result mysql_db_query($dbname,$sql);
    
$NRow mysql_num_rows($result);
    
if (
$NRow==0) {
        echo 
'<font color=red>'."ยังไม่มี สมาชิกครับ".'</font>';
    }
    while( 
$arr mysql_fetch_row$result ) ) {
    
//$User = $arr["user"];
    
echo "  <a href='../webboard/profile.php?Name=$arr[0]' target=_blank><font color=red> $arr[0]</font></a>,";
    }
    
?>
    </html>