MySQL 행과 일치하는 값의 레코드 불러오기 mysql_fetch_row() DB 관련 함수
<?
mysql_connect("localhost", "root", "apmsetup");
mysql_select_db("hello");
$result = mysql_query("select *from user_tbl where userid = 'david'");
if(!$result){
echo mysql_error();
exit;
}
$row = mysql_fetch_row($result);
$sql = mysql_query("select *from user_tbl");
$num_fields = mysql_num_fields($sql);
for($a = 0; $a < $num_fields;$a++){
echo "$a : $row[$a] <br />";
}
?>
'프로그래밍 > MySQL' 카테고리의 다른 글
MySQL 필드의 이름을 불러오는 함수 (0) | 2017.08.17 |
---|---|
MySQL 필드의 바이트 값을 구하는 함수 (0) | 2017.08.17 |
MySQL 테이블의 필드의 갯수를 구하는 함수 (0) | 2017.08.17 |
MySQL 에러번호 반환 함수 mysql_errno() (0) | 2017.08.17 |
[MySQL] MySQL 데이터 베이스 삭제 하기 (0) | 2017.08.17 |