커피와 개발자

[MySQL API] mysql_fetch_array() 본문

데이터베이스/SQL

[MySQL API] mysql_fetch_array()

광박이 2011. 3. 3. 10:35
728x90
MySQL 쿼리 결과를 한 줄씩 배열 형태로 반환

【예제】
<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_array($res);
  for($i=0; $i<$fields; $i++) {
    echo "$row[$i] ";
  }
    echo "<br>";
  $row=mysql_fetch_array($res);
  echo "$row[id] $row[name] $row[tel] $row[county] $row[state]";
? >
</body></html>
728x90

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

[MySQL API] mysql_fetch_field()  (0) 2011.03.03
[MySQL API] mysql_fetch_assoc()  (0) 2011.03.03
[MySQL API] mysql_escape_string()  (0) 2011.03.03
[MySQL API] mysql_error()  (0) 2011.03.03
[MySQL API] mysql_errno()  (0) 2011.03.03
Comments