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에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
14년 전 조회 1,663
14년 전 조회 1,329
14년 전 조회 753
14년 전 조회 512
14년 전 조회 3,720
14년 전 조회 555
14년 전 조회 705
14년 전 조회 1,755
14년 전 조회 1,262
14년 전 조회 1,306
14년 전 조회 1,006
14년 전 조회 958
14년 전 조회 724
14년 전 조회 1,268
14년 전 조회 862
14년 전 조회 1,677
14년 전 조회 1,032
14년 전 조회 2,707
14년 전 조회 578
14년 전 조회 2,231
14년 전 조회 2,625
14년 전 조회 4,368
14년 전 조회 954
14년 전 조회 1,157
14년 전 조회 1,363