php获取字段名示例分享_PHP教程

WBOY
Release: 2016-07-13 10:37:05
Original
995 people have browsed it

复制代码代码如下:

$link = mysql_connect('localhost', 'username', 'password');
$fields = mysql_list_fields("database", "table", $link);
$columns = mysql_num_fields($fields);
$field = false;
for ($i = 0; $i $field .= "'".mysql_field_name($fields, $i) . "',";
}
print $field;

www.bkjia.com true http://www.bkjia.com/PHPjc/736820.html TechArticle 复制代码 代码如下: ?php $link = mysql_connect('localhost', 'username', 'password'); $fields = mysql_list_fields("database", "table", $link); $columns = mysql_num_fields($fi...
Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!