1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php $post['UserId'] = "ryunen"; include("../manage/category/pointordercommon.php"); $idqry = "select * from customers where id = '{$post['UserId']}'"; print_r($idqry); $resultid = mysql_query($idqry,$connect);
if( mysql_num_rows($resultid) > 0){ echo "아이디"; } else { echo "없음"; } ?>
|