How to get the table field name_php using the function in PHP

Source: Internet
Author: User
Use the appropriate function to implement PHP to obtain the table field name. You can use the mysql_field_name () function to obtain the table field name using PHP. the syntax format of this function is as follows: stringmysql_field_name (resource $ result, int $ field_offset) mysql_fie is used.

PHP obtains the table field name through the mysql_field_name () function. the syntax format of this function is as follows:

String mysql_field_name (resource $ result, int $ field_offset)

The mysql_field_name () function returns the name of the field of the specified index. its parameters are described as follows.

L result: the result set returned after the mysql_query () function is executed.

L field_offset: the offset of a field. the start value is zero.

Use the PHP function of mysql_field_name () to obtain the table field name. The sample code is as follows:

  1. <? Php
  2. $ Connection = mysql_connect ("localhost ",
    "Root", "root") or die ("failed to connect to the server ");
  3. Mysql_select_db ("sunyang", $ connection)
    Or die ("failed to select database ");
  4. $ Query = "select * from employee ";
  5. $ Result = mysql_query ($ query) or
    Die ("user query failed ");
  6. Echo mysql_field_name ($ result, 0 );
    // Output the first field name
  7. Echo"
    ";
  8. Echo mysql_field_name ($ result, 1 );
    // Output the second field name
  9. Mysql_close ($ connection );
  10. ?>

In the above PHP code, the first and second field names can be output.


PHP obtains the table field name through the mysql_field_name () function. the syntax format of this function is as follows: string mysql_field_name (resource $ result, int $ field_offset) mysql_fie...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.