테스트 사이트 - 개발 중인 베타 버전입니다

php if? else? 질문인거같아요!

  <?
     include_once("./connect_db.php");
 $code = $_POST["code"];
 
if($member[mb_id]){
    $query=mysql_query("update '$dataname' set occupant='$member[mb_id]',regdate='$date' where code='$code' limit 1",$connect);
}else{
    alert('로그인 해주세요');
}
?>
포스트로 받아온 $code 가 db안에 있는 code 와 일치하는것이 없다면 없는 코드라고 띄우고싶은데 어떻게 해야할까요?

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 3개

먼저 select 해보시면 될듯 합니다.
<?
if($memeber[mb_id]) {
$query = mysql_query("select count(*) from $dataname where code=$code");
$result = mysql_fetch_row($result);
if($result[0] >0 ) {
$query=mysql_query("update '$dataname' set occupant='$member[mb_id]',regdate='$date' where code='$code' limit 1",$connect);
} else {
echo "코드가 없습니다. 다시 시도하여 주십시오."
}
}else{
alert('로그인 해주세요');
}
?>
밴닛님이 설명 해주셨네요 ㅎㅎ db안에 있는 code를 먼저 뽑아야 겠죵 ㅎㅎ

게시글 목록

번호 제목
12307
12306
12305
12304
12303
JavaScript 계산기
12302
12301
12300
12299
12298
12297
12296
12295
12294
12293
12292
12291
12290
12289
12288
12287
12286
12285
12284
12283