您的位置:

php获取数据库表内容,php获取数据库的某条信息

本文目录一览:

php+mysql如何读取数据库数据?

先配置数据库------连接数据库--------选择数据库--------填写检索表-------输出检索内容

第一种解决方法:

一、配置一下数据库:

define("DB_HOST","localhost");//数据库地址,一般为localhost

define("DB_USER","root");//数据库用户名

define("DB_PSW","");//数据库密码

define("DB_DB","databasename");//需要操作的数据库

二、连接数据库:

$conn = mysql_connect(DB_HOST,DB_USER,DB_PSW) or die

三、选择数据库:

mysql_select_db(DB_DB,$conn) or die

四、检索表:(填写tablename)

$result = mysql_query("select * from tablename") or die

五、输出检索的内容:

while ($row = mysql_fetch_row($result)){foreach($row as $data){    echo $data.' ';}    echo 'br。

php如何获取数据库信息

代码如下:?View

Code

PHP

include("conn.php");//调用数据库连接文件

echo

"table

width=572

height=56

border=0

cellspacing=1

";

//创建html表格

echo

"tr

bgcolor=#9999FF";

echo

"th

width=33

scope=colid/th";

echo

"th

width=100

scope=coluser_name/th

";

echo

"th

width=100

scope=coluser_pass/th

";

echo

"th

width=100

scope=colstaus/th";

echo

"th

width=100

scope=colinsert_time/th";

echo

"/tr";

$SQL

=

"select

*

from

user_info";

$query

=

mysql_query($SQL);

//SQL查询语句

while

($row

=

mysql_fetch_array($query)){

//使用while循环mysql_fetch_array()并将数据返回数组

echo

"tr

onmouseout=this.style.backgroundColor=''

onMouseOver=this.style.backgroundColor='#99CC33'

bgcolor=#CCCCCC";

echo

"td$row[0]/td";

//输出数组中数据

echo

"td$row[1]/td";

echo

"td$row[2]/td";

echo

"td$row[3]/td";

echo

"td$row[4]/td";

echo

"/tr";

}

echo

"/table";输出记录截图

php如何取数据库中内容

试编写代码如下:

?php

//从数据库根据 id 获取颜色

function getColor($db, $id)

{

    if ($result = $db-query("SELECT * FROM color where id='" . $id . "'"))

    {

        $row = $result-fetch_assoc();

        return $row['color'];

    }

    return '#000000';

}

$mysqli = new mysqli("localhost", "test", "test", "room");

if ($mysqli-connect_error) {

    printf("数据库连接错误: %s\n", mysqli_connect_error());

    exit();

}

?

table border="1" cellspacing="0"

tr

td bgcolor="?php echo getColor($mysqli,'1')?"1/td

/tr

tr

td bgcolor="?php echo getColor($mysqli,'2')?"2/td

/tr

tr

td bgcolor="?php echo getColor($mysqli,'3')?"3/td

/tr

/table

?php

$mysqli-close();

?

怎样借助PHP从HTML网页中获取phpmyadmin数据库里数据表的内容

 ?php

$link=mysql_connect('localhost','用户名','密码')or die("数据库连接失败");//连接数据库

mysql_select_db('数据库名',$link);//选择数据库

mysql_query("set names utf8");//设置编码格式

$q="select * from "数据表";//设置查询指令

$result=mysql_query($q);//执行查询

while($row=mysql_fetch_assoc($result))//将result结果集中查询结果取出一条

{ echo  返回到HTML; }

?

html界面使用ajax的成功返回值,再渲染在界面里就行了

如何用php获取数据库信息并显示

获取ppq数据库的所有表名的代码:

?php

$server='localhost';

$user='root';

$pass='12345';

$dbname='ppq';

$conn=mysql_connect($server,$user,$pass);

if(!$conn)

die("数据库系统连接失败!");

$result=mysql_list_tables($dbname);

if(!$result)

die("数据库连接失败!");

while($row=mysql_fetch_row($result))

{

echo

$row[0]."

";

}

mysql_free_result($result);

?

mysql_list_tables

(PHP

3,

PHP

4

,

PHP

5)

mysql_list_tables

--

列出

MySQL

数据库中的表

说明

resource

mysql_list_tables

(

string

database

[,

resource

link_identifier])

mysql_list_tables()

接受一个数据库名并返回和

mysql_query()

函数很相似的一个结果指针。用

mysql_fetch_array()或者用mysql_fetch_row()来获得一个数组,数组的第0列就是数组名,当获取不到时

mysql_fetch_array()或者用mysql_fetch_row()返回

FALSE。