반응형
mysqli_query 함수는
mysqli_connect 를 통해 연결된 객체를 이용하여 MySQL 쿼리를 실행시키는 함수입니다.
mysqli_query(연결객체,쿼리);
1 2 3 4 5 6 7 | <? if(isset($bNo)) { $sql = 'select title, content, author from bbslist where no = ' . $bNo; $result = mysqli_query($conn,$sql); $row = mysqli_fetch_array($result); } ?> | cs |
반응형
'이전 게시글 > 컴퓨터#웹 PHP' 카테고리의 다른 글
PHP 오류:mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in (0) | 2016.01.25 |
---|---|
PHP Mysql 연결해보자 mysqli_connect, new mysqli (0) | 2016.01.24 |
PHP MySql 결과 가져오기 mysqli_fetch_array, mysqli_num_rows, mysqli_fetch_assoc, mysqli_fetch_row (0) | 2016.01.24 |
PHP if( isset($data) ) 란 무엇??? (0) | 2016.01.24 |
PHP란 무엇인가? PHP뜻/가이드 (0) | 2016.01.24 |