?php
創(chuàng)新互聯(lián)公司是一家專業(yè)提供汕城企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站制作、網(wǎng)站建設(shè)、HTML5、小程序制作等業(yè)務(wù)。10年已為汕城眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進(jìn)行中。
mysql_select_db("infosystem",
$link);
//選擇數(shù)據(jù)庫
$q
=
"SELECT
*
FROM
info";
//SQL查詢語句
mysql_query("SET
NAMES
GB2312");
$rs
=
mysql_query($q,
$link);
//獲取數(shù)據(jù)集
if(!$rs){die("Valid
result!");}
echo
"table";
echo
"trtd部門名稱/tdtd員工姓名/tdtdPC名稱/td/tr";
while($row
=
mysql_fetch_row($rs))
echo
"trtd$row[1]/tdtd$row[2]/tdtd$row[3]/td/tr";
//顯示數(shù)據(jù)
echo
"/table";
mysql_free_result($rs);
//關(guān)閉數(shù)據(jù)集
我直接在這給你修改答案算了
使用的時(shí)候刪除行號(hào)
修改數(shù)據(jù)庫配置
如果想使用
頁面不刷新查詢數(shù)據(jù)庫
需要使用JQUERY
如果有需要給我留言
1
?php
2
if(isset($_POST['submit'])$_POST['submit']=='提交'){
3
//判斷是否是提交過來的
4
$intext
=
$_POST['intext'];
5
if($intext!=null||$intext!=''){
6
$link
=
mysql_connect("localhost",
"root",
"123456");
7
//數(shù)據(jù)庫配置信息
第一個(gè)參數(shù)數(shù)據(jù)庫位置第二個(gè)是用戶名第三個(gè)是密碼
8
mysql_select_db("szn_test");
9
//設(shè)置要使用的數(shù)據(jù)庫
10
$sql
=
"select
*
from
demo
where
res
=
'".$intext."'";
11
//SQL語句
12
var_dump($sql);
13
$res
=
mysql_query($sql);
14
$arr
=
array();
15
//吧結(jié)果存入數(shù)組
并記錄數(shù)組長(zhǎng)度
16
$count
=
0;
17
while($data
=
mysql_fetch_array($res)){
18
$arr[$count]
=
$data;
19
$count++;
20
}
21
//關(guān)閉數(shù)據(jù)庫
22
mysql_close($link);
23
}
24
}
25
26
?
27
html
28
head
29
title/title
30
/head
31
body
32
form
id="form1"
method="post"
action="demo.php"
33
input
type="text"
name="intext"
34
input
type="submit"
name="submit"
value="提交"
35
/form
36
?php
37
if(isset($arr)$arr
!=
null){
38
for($i
=
0;
$i
$count;
$i++){
39
foreach($arr[$i]
as
$key
=
$value){
40
echo
"key:".$key."
value:".$value;
41
echo
"
";
42
}
43
echo
"br";
44
}
45
}
46
?
47
/body
48
/html
這個(gè)是數(shù)據(jù)庫查詢代碼
你可以看以下對(duì)照著修改修改
?php
$server_name="localhost:3306";?//數(shù)據(jù)庫服務(wù)器名稱
$username="root";?//?連接數(shù)據(jù)庫用戶名
$password="root";?//?連接數(shù)據(jù)庫密碼
$mysql_database="chengdu";?//?數(shù)據(jù)庫的名字
//?連接到數(shù)據(jù)庫
$conn=mysql_connect($server_name,?$username,?$password);
mysql_query("set?names?utf8");
//選擇數(shù)據(jù)庫
mysql_select_db($mysql_database,$conn);
//?從表中提取信息的sql語句
$chaKeName=mysql_query("select Coltd from KeHu where KeID ='$row[ID]'",$conn);
if (count(mysql_fetch_array($chaKeName)) 0)
? ? ? {$KeCo="存在";}
else
? {$KeCo="不在";}
echo $KeCo;
//?關(guān)閉連接
mysql_close($conn);
?
if (count(mysql_fetch_array($chaKeName)) 0)? 在判斷的這一句加了一個(gè)統(tǒng)計(jì)
方法一、利用數(shù)據(jù)庫的功能來實(shí)現(xiàn),例如MYSQL數(shù)據(jù)庫可以在SELECT語句中使用LIMIT來指定從多少行開始返回結(jié)果,例如從第2條開始30條的查詢語句為:
select * from test limit 1,30
方法二、循環(huán)的時(shí)候進(jìn)行控制,利用計(jì)數(shù)器忽略第1條記錄,這適合各種數(shù)據(jù),例子代碼:
$n=0;
while($row=mysql_fetch_array($res)){
$n++;
if?($n1){
//處理結(jié)果
}
}
//先創(chuàng)建一個(gè)log表,有id, action, username, query, time 等字段,如果需要記錄更多,可添加
$query_string = $_SERVER['QUERY_STRING'];//查詢(query)的字符串,這個(gè)最好處理一下
$action = $_REQUEST['action'];//操作類型,可以自己定義。比如?action=addid=xx
//$username就是當(dāng)前操作人的名字了,登錄后都有的吧
if(in_array($action, array('add', 'edit','delete','update')))
{
addlog($action,$username,$query_string);
}
function addlog($action,$username,$query_string)
{
//這里可以把時(shí)間和$query_string處理一下,插入數(shù)據(jù)庫
$db-query($sql);
}
大致思路就是這樣的了,細(xì)節(jié)還需你自己完善
這是PHP獲取數(shù)據(jù)庫信息的代碼 希望能給你帶來啟發(fā)
?php
$conn=mysql_connect("localhost","root","");
$select=mysql_select_db("books",$conn);
$query="insert into computers(name,price,publish_data) ";
$query.="values('JSP',28.00,'2008-11-1')";
$query="select * from computers";
$result=mysql_query($query);
//以下是使用mysql_result()函數(shù)來獲取到查詢結(jié)果
$num=mysql_num_rows($result);
for($rows_count=0;$rows_count$num;$rows_count++){
echo "書名:".mysql_result($result,$rows_count,"name");
echo "價(jià)格:".mysql_result($result,$rows_count,"price");
echo "出版日期:".mysql_result($result,$rows_count,"publish_data")."br";
}
//以下是使用mysql_fetch_row()函數(shù)來獲取到查詢結(jié)果
while($row=mysql_fetch_row($result))
{
echo "書號(hào):".$row[0]."br";
echo "書名:".$row[1]."br";
echo "價(jià)格:".$row[2]."br";
echo "出版日期:".$row[3]."br";
echo "br";
}
//以下是使用mysql_fetch_array()函數(shù)來獲取到查詢結(jié)果
while($row=mysql_fetch_array($result))
{
echo "書號(hào):".$row[0]."br";
echo "書名:".$row[1]."br";
echo "價(jià)格:".$row["price"]."br";
echo "出版日期:".$row["publish_data"]."br";
echo "br";
}
//以下是使用mysql_fetch_object()函數(shù)來獲取到查詢結(jié)果
while($row=mysql_fetch_object($result))
{
echo "書號(hào):".$row-id."br";
echo "書名:".$row-name."br";
echo "價(jià)格:".$row-price."br";
echo "出版日期:".$row-publish_data."br";
echo "br";
}
?