|
|
|
คำสั่ง mysql_list_fields ผมลองทำให้มันแสดงชื่อ fields แต่มันก็ไม่ออกคับมัน errer |
|
|
|
|
|
|
|
เป็นประโยชจังเลยครับ
|
|
|
|
|
Date :
2010-05-09 23:36:32 |
By :
keapkung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณที่บอกครับ
Code (PHP)
$link = mysql_connect("localhost","root","50285803");
$result = mysql_list_fields("membersystem","member",$link);
$numfield = mysql_num_fields($result);
for($index=0; $index <$numfield; $index++) {
$colum = mysql_field_name($result,$index);
$type = mysql_field_type($result,$index);
$size = mysql_field_len($result,$index);
$flags = mysql_field_flags($result,$index);
echo $colum ," ___ ", $type ;
}
//ยกเลิกการติดต่อกับระบบฐานข้อมูล
mysql_close($link);
|
|
|
|
|
Date :
2010-05-10 11:37:44 |
By :
at_ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|