Home  >  Article  >  Backend Development  >  Two methods to obtain mysql column information in php_PHP tutorial

Two methods to obtain mysql column information in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:28:071048browse

   1、使用mysql_fetch_field

  $query=$db->query(" SELECT * FROM $tablename limit 1");

  $num=mysql_num_fields($query);

  for($i=0;$i<$num;$i++)

  {

  $f_db=mysql_fetch_field($query,$i);

  $showdb[]=$f_db->name;

  }

  2、使用show fields

  $sqlr="show fields from $tablename";

  $query=mysql_query($sqlr);

  while($row=mysql_fetch_array($query))

  {

  print_r($row);

  $data[]=$row['Field'];

  }

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/814668.htmlTechArticle1、使用mysql_fetch_field $query=$db-query( SELECT * FROM $tablename limit 1); $num=mysql_num_fields($query); for($i=0;$i$num;$i++) { $f_db=mysql_fetch_field($query,$i); $showdb[...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn