PHP implements a common database query

Source: Internet
Author: User
This article mainly introduces the PHP implementation of the general data from the database table reading to the array of functions, examples of PHP implementation of common database query skills, very practical value, the need for friends can refer to the next

In this paper, we describe a common PHP implementation function that reads data from a database table to an array. 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 Executionconnect () ; $Sql = "select * from". $table. "". $where. "ORDER by". $field; $Req = mysql_query ($sql); $Res = Mysql_num_rows ($req);? ><select name = "<?php echo $name;?>" id= "<?php echo $textID;?>" ><option value= "> ____</ option><? php//We do a loops that would read the information for each recordwhile ($data = mysql_fetch_array ($res)) {  //We DISP Lay the information from the current record?>   <option value = "<?php echo $data [' id '];?>" >   <?ph P echo $data [$field];? ></option>   <? PHP  }?></select><? Php}?>

Summary : The above is the entire content of this article, I hope to be able to help you learn.

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.