All articles(网络文学目录) All Pictures(图片目录) All Softwares(软件目录)

 
PHP将MYSQL内容读到二维数组并按指定列输出_[PHP教程]

Writer: 归海一刀 Article type: Programming skills(编程技巧) Time: 2014/2/17 7:34:16 Browse times: 462 Comment times: 0

PHP将MYSQL内容读到二维数组并按指定列输出_[PHP教程]


Head photo

Go homepage
Upload pictures
Write articles

PHP将MYSQL内容读到二维数组并按指定列输出_[PHP教程]

  PHP将MYSQL内容读到二维数组并按指定列输出

<?
host = "localhost"; //主机名
user = "root"; //mysql用户名
password = ""; //mysql密码
database = "doc"; //mysql数据库名
tables = "mclass"; //表名

conn=mysql_connect("host","user","password") or die("数据库打开出错");
mysql_select_db("database");

query="select * from tables";
result=mysql_query(query,conn);
i=0;
j=0;
while(row=mysql_fetch_row(result)){
array[i][j] = row[0].row[1];
array2[i][j] = row[0];
j++; // echo i.",".j.row[1]."<br>";
if(j==3) {
i++;
j=0;
} //else {j++ ;}

}
amax=count(array);//获是数组内数据个数。

rows=2; //设置列数

//开始显示数据
for (x=0; x<=amax-1; x++) {
for (y=0; y<= rows; y++) {
echo "<a href=".array2[x][y].">".array[x][y]."</a>|" ;
}
echo "<p>";
}

/*
显示结果为
aaa|bbb|ccc
ddd|eee|fff
lll|mmm|nnn
.....
*/

?>





There are 0 records,
Comment:
Must be registered users to comment(必须是注册用户才能发表评论)

Disclaimer Privacy Policy About us Site Map
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.