Php implements a common function instance for reading data from a database table to an array. array function _ PHP Tutorial

Source: Internet
Author: User
Php implements a common function instance for reading data from a database table to an array, an array function. Php implements a common function instance for reading data from a database table to an array. in this document, an array function instance describes php's function for reading data from a database table to an array. Share it with big php to implement common function instances for reading data from database tables to arrays, array functions

The example in this article describes php's function for reading data from database tables to arrays. Share it with you for your reference. The specific analysis is as follows:

This function does not care about the table structure. you only need to specify the table name, structure, and query conditions to perform common query operations on the table.

Function listmytablerows ($ table, $ name, $ field, $ where, $ textID) {// Connect to the database and query executionconnect (); $ SQL = "select * from ". $ table. "". $ where. "order ". $ field; $ Req = mysql_query ($ SQL); $ Res = mysql_num_rows ($ req);?>____
   <? Php // We do a loop that will read the information for each recordwhile ($ data = mysql_fetch_array ($ res) {// We display the information from the current record?><? Php echo $ data [$ field];?>
   <? Php }?>
   <? Php }?>I hope this article will help you with php programming.Examples in this article describes how php implements a common function to read data from a database table to an array. Share with me...

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.