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 ...