这篇文章主要为大家详细介绍了php通用从数据库表读取数据到数组函数,具有一定的参考价值,可以用来参考一下。
对php实现的一个通用的从数据库表读取数据到数组的函数感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* php实现的一个通用的从数据库表读取数据到数组的函数
*
* @param
* @arrange 512-笔记网: www.q1010.com
**/
function listmytablerows($table, $name, $field, $where, $textID)
{
/ / Connect to the database and query execution
connect ();
$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 loop that will read the information for each record
while ($data = mysql_fetch_array($res))
{
/ / We display the information from the current record
?>
<Option value = "<?php echo $data['id']; ?>">
<?php echo $data[$field]; ?>
</ Option>
<? Php
}
?>
</ Select>
<? Php
}
?>
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/901-0.html
注:关于php通用从数据库表读取数据到数组函数的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:读取数据
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。