|
|
|
20년 전
|
조회 1,947
|
|
|
|
20년 전
|
조회 1,827
|
|
|
|
20년 전
|
조회 1,603
|
|
|
|
20년 전
|
조회 1,404
|
|
|
|
20년 전
|
조회 1,540
|
|
|
|
20년 전
|
조회 1,528
|
|
|
|
20년 전
|
조회 1,524
|
|
|
|
20년 전
|
조회 1,542
|
|
|
|
20년 전
|
조회 1,839
|
|
|
|
20년 전
|
조회 1,568
|
|
|
|
20년 전
|
조회 1,583
|
|
|
|
20년 전
|
조회 1,831
|
|
|
|
20년 전
|
조회 1,565
|
|
|
|
20년 전
|
조회 1,535
|
|
|
|
20년 전
|
조회 1,542
|
|
|
|
20년 전
|
조회 1,551
|
|
|
|
20년 전
|
조회 1,540
|
|
|
|
20년 전
|
조회 1,588
|
|
|
|
20년 전
|
조회 1,474
|
|
|
|
20년 전
|
조회 2,753
|
댓글 2개
<?
function disp_member_list()
{
global $g4;
$sql = "select mb_id from $g4[member_table]";
$result = sql_query($sql);
$str = "<table border=1 cellspacing=0 cellpadding=0>";
for ($i=0; $row=sql_fetch_array($result); $i++)
{
$str .= "<tr><td>";
$str .= $row[mb_id];
$str .= "</td></tr>";
}
$str .= "</table>";
return $str;
}
?>
리스트를 출력하고자 하는 부분에 다음 내용을 삽입함.
<?=disp_member_list(); ?>