커피와 개발자

[MySQL API] mysql_fetch_row() 본문

데이터베이스/SQL

[MySQL API] mysql_fetch_row()

광박이 2011. 3. 3. 14:21
728x90
질의 결과에 대해서 한 줄의 데이터를 배열로 가져온다.

【예제】
<html><body>
< ?
$con=mysql_connect("localhost","root","root_password");
$db=mysql_select_db("mydb",$con);
$query="select * from employees";
$res=mysql_query($query);
$fields=mysql_num_fields($res);
$row=mysql_fetch_row($res);
for($i=0; $i<$fields; $i++) {
   echo "$row[$i] ";
  }
  echo "<br>";
$row=mysql_fetch_row($res);
for($i=0; $i<$fields; $i++) {
   echo "$row[$i] ";
}
? >
</body></html>

728x90

'데이터베이스 > SQL' 카테고리의 다른 글

[MySQL API] mysql_num_rows()  (0) 2011.03.03
[MySQL API] mysql_field_len()  (0) 2011.03.03
[MySQL API] mysql_fetch_object()  (0) 2011.03.03
[MySQL API] mysql_fetch_lengths()  (0) 2011.03.03
[MySQL API] mysql_field_flags()  (0) 2011.03.03
Comments