묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
php 게시판 글 보기 연결 에러..같은데 봐주세요ㅠㅠ!
2015.04.21 16:50
<?
include ("dbcon.php");
$query="select * from qna where no=$no";
$result = mysql_query($query) or die ("err1");
$row=mysql_fetch_array($result);
$row["title"]=stripslashes($row["title"]);
$row["content"]=stripslashes($row["content"]);
// Hits 올리기
$query="update qna set hits = hits + 1 where no=$no";
mysql_query($query,$connect) or die ("err2");
?>
게시판(테이블명:qna) 글 보기 (qna_view.php)에 있는 php 부분입니다..
게시판 리스트보기(qna_list.php)에서 글 제목을 선택하면 qna_view.php 로 이동하는데
err1, err2 부분 다 에러같더라고요... 실행하면 err1 라고 뜹니다ㅠㅠ
mysql_query 앞부분에 @도 붙여보고.... 이것 저것 해봤는데 잘 모르겠어요..
다른 페이지는 연결 잘 되는데.....ㅠㅠ
부탁드립니당~~ㅠㅠ