½ºÅ©·¦Çذ£ ȸ¿øµéÀÇ ¸®½ºÆ®
°ü¸®ÀÚ 06-01-14 09:06
 http://sir.co.kr/bbs/tb.php/g4_tiptech/2023, HIT:7
<?
$lists = mysql_query("select ms_id,mb_id from $g4[scrap_table] where bo_table='$bo_table' and wr_id = $wr_id");
//À̱ÛÀÇ ½ºÅ©·¦Àº¸î°³?
$totals = mysql_num_rows($lists);
//½ºÅ©·¦ÇÑ ¸®½ºÆ®°¡ Á¸ÀçÇÒ¶§¸¸ Ãâ·Â
if ($totals){
echo "<table border=0 cellspacing=5 cellpadding=5 width=98%><tr>
<td bgcolor=#EEEEEE><font color=#555555>
½ºÅ©·¦¼ö($totals) °Ç : ";
for ($i=1; $i<=$totals; $i++)
{
$sets=mysql_fetch_array($lists);
//¹øÈ£
$results=$sets[ms_id];
//½ºÅ©·¦ÇÑ È¸¿ø¾ÆÀ̵ð
$results1=$sets[mb_id];
//½ºÅ©·¦ÇÑ È¸¿øÀÇ ´ÐÀ» °¡Á®¿ÀÀÚ
$infos =mysql_fetch_array(mysql_query("select mb_nick from $g4[member_table] where mb_id='$results1'"));

$resultsm =$infos[mb_nick];

//½ºÅ©·¦ÇÑ È¸¿øµéÀÇ ´Ð³ÛÀ» ¼ø¼­´ë·Î ³ª¿­ÇÔ
 echo "{$resultsm}, ";
}
echo "</td>
</tr></table><br>";
}
?>