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를 먼저 뽑아야 겠죵 ㅎㅎ
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
13년 전 조회 1,637
13년 전 조회 1,307
13년 전 조회 732
13년 전 조회 484
13년 전 조회 3,703
13년 전 조회 536
13년 전 조회 689
13년 전 조회 1,733
13년 전 조회 1,243
13년 전 조회 1,285
13년 전 조회 989
13년 전 조회 940
13년 전 조회 701
13년 전 조회 1,248
13년 전 조회 842
13년 전 조회 1,658
13년 전 조회 1,011
13년 전 조회 2,687
13년 전 조회 555
13년 전 조회 2,214
13년 전 조회 2,610
13년 전 조회 4,350
13년 전 조회 935
13년 전 조회 1,139
13년 전 조회 1,341