PHP implements a generic function instance that reads data from a database table to an array, and the array function _php tutorial

Source: Internet
Author: User

PHP implements a generic function instance that reads data from a database table to an array, array functions


In this paper, we describe a common PHP implementation function that reads data from a database table to an array. Share to everyone for your reference. The specific analysis is as follows:

This function does not care about the table structure, but it is useful to specify the table name, structure, and query criteria to perform common query operations on the table.

function listmytablerows ($table, $name, $field, $where, $textID) {//Connect to the database and query E Xecutionconnect (); $Sql = "select * from". $table. "". $where. "ORDER by". $field; $Req = mysql_query ($sql); $Res = Mysql_num_rows ($req);? > ____!--option--><?  php//We do a loops that would read the information for each recordwhile ($data = mysql_fetch_array ($res)) {//We display The information from the current record?>   <?php Echo $data [$field];?>!--option--> <? PHP}?>!--select--><? Php}?> hope that this article on the PHP program for everyone to help. http://www.bkjia.com/PHPjc/970974.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/970974. htmltecharticlephp implements a generic function instance that reads data from a database table to an array, and the array function describes a common PHP implementation function that reads data from a database table to an array. Share to the big ...    

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.