묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
쿼리문에 대해서 질문좀요
2005.08.24 02:41
$result = mysql_query("select no, inquiry from bbs where no='10' order by no desc", $db_conn);
$read_data = mysql_fetch_array($result);
$query = "update bbs set inquiry='1' where no=$read_data["no"]";
이렇게 하거나
$query = "update bbs set inquiry='1'+ '+ ' where no=$read_data['no']";
이렇게 해도 계속 문법에러가 나오는데 왜그런지 알려주세요.
줄수를 늘려서 어떻게 해볼수는 있겠지만 저렇게 한줄로 처리하고 싶어서요.
$read_data = mysql_fetch_array($result);
$query = "update bbs set inquiry='1' where no=$read_data["no"]";
이렇게 하거나
$query = "update bbs set inquiry='1'+ '+ ' where no=$read_data['no']";
이렇게 해도 계속 문법에러가 나오는데 왜그런지 알려주세요.
줄수를 늘려서 어떻게 해볼수는 있겠지만 저렇게 한줄로 처리하고 싶어서요.