MySQL 테이블의 필드의 갯수를 구하는 함수 mysql_num_fields()  DB 관련 함수

 

MySQL 에서 테이블의 필드를 수를 구하는 함수는 mysql_num_fiedls() 이다.

 

그럼 소스를 통해서 살펴보자.

 

<?php
$conn = mysql_connect("localhost","root","apmsetup") or die ("My SQL connection Error");

mysql_select_db('hello');


$result = mysql_query('select *from user_tbl') or die("no table");

$a = mysql_num_fields($result);  //
 
echo "필드의 갯수 : $a ";


?>

블로그 이미지

itworldkorea

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

,