1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php include("../../../../manage/category/common.php");
$sql = "select count(*) as cnt from member where Mid = '$mid' "; $res = mysql_query($sql); $info = mysql_fetch_array($res); if($info['cnt']>0){ echo "이미 가입한 아이디가 있습니다."; } else { echo "ok"; }
?>
|