'MySQL 행과 일치하는 값의 레코드 불러오기'에 해당되는 글 1건

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 />";
}
 ?>

블로그 이미지

itworldkorea

IT korea가 세상(world)을 변화시킨다.

,