How to obtain the number of fields in PHP

Source: Internet
Author: User

Through

The mysql_num_fields () function counts the number of all fields in the table to be queried. The syntax format of this function is as follows:

Int mysql_num_fields (resource $ result)

The result parameter is the result set returned after the mysql_query () function is executed. Sample Code for obtaining the number of fields in PHP using the mysql_num_fields () function 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 ("Data Query failed"); // execute the query
  6. Echo mysql_num_fields ($ result );
    // Number of output Fields
  7. Mysql_free_result ($ result );
  8. Mysql_close ();
  9. ?> 

The above describes how to obtain the number of fields in PHP.


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.