獲取ppq數(shù)據(jù)庫的所有表名的代碼:
成都創(chuàng)新互聯(lián)公司長期為近1000家客戶提供的網(wǎng)站建設(shè)服務(wù),團隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為金灣企業(yè)提供專業(yè)的做網(wǎng)站、網(wǎng)站制作,金灣網(wǎng)站改版等技術(shù)服務(wù)。擁有十載豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
?php
$server='localhost';
$user='root';
$pass='12345';
$dbname='ppq';
$conn=mysql_connect($server,$user,$pass);
if(!$conn)
die("數(shù)據(jù)庫系統(tǒng)連接失??!");
$result=mysql_list_tables($dbname);
if(!$result)
die("數(shù)據(jù)庫連接失??!");
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
數(shù)據(jù)庫中的表
說明
resource
mysql_list_tables
(
string
database
[,
resource
link_identifier])
mysql_list_tables()
接受一個數(shù)據(jù)庫名并返回和
mysql_query()
函數(shù)很相似的一個結(jié)果指針。用
mysql_fetch_array()或者用mysql_fetch_row()來獲得一個數(shù)組,數(shù)組的第0列就是數(shù)組名,當(dāng)獲取不到時
mysql_fetch_array()或者用mysql_fetch_row()返回
FALSE。
1。首先是 你td里面的只是一個變量名,而并沒有進行輸出;還有 你php環(huán)境開啟短標(biāo)簽了?沒開啟的話是不支持? ?這樣寫法的。
2。第二個問題 只是字符編碼的問題,和上面兄弟說的一樣 在選擇完數(shù)據(jù)庫后加一句:
mysql_query("set names 'xxx'"); //這個xxx要換成和你數(shù)據(jù)庫的編碼,例如,你數(shù)據(jù)庫用的是utf-8的話,這里就寫成 mysql_query("set names 'utf8'");
?
require("Conn.php");
$user=$_POST['user'];
$pwd=$_POST['pwd'];
if(!is_null($_POST['Submit'])){
if($user!=null and $pwd!=null){
$insert="insert into laod(user,pwd) values('$user','$pwd')";
$result=mysql_query($insert,$conn);
if($result){
echo "scriptalert('注冊成功!');window.location.href='zhuce.php';/script";
}
else{
echo "scriptalert('注冊失?。?);window.location.href='zhuce.php';/script";
}
}
else{
echo "scriptalert('用戶名或密碼不能為空!');window.location.href='zhuce.php';/script";
}
}
else if(!is_null($_POST['Submit1'])){
if($user!=null and $pwd!=null){
$select="select * from laod where user='$user' and pwd='$pwd'";
$num=mysql_query($select,$conn);
if(mysql_num_rows($num)0){
echo "scriptalert('登陸成功!');window.location.href='zhuce.php';/script";
}
else{
echo "scriptalert('該用戶不存在');window.location.href='zhuce.php';/script";
}
}
}
?
//zhuce.php 為模板顯示頁(自己建就好)
接受數(shù)據(jù)存入數(shù)據(jù)庫,然后留言顯示頁面取出數(shù)據(jù)并按時間排序
?php
//顯示多少條數(shù)據(jù)
$db=mysql_connect("localhost","root","xiaowodcaowugook"); //創(chuàng)建數(shù)據(jù)庫連接
$select=mysql_select_db("xmanman",$db); //選擇要操作的數(shù)據(jù)庫
mysql_query("SET NAMES GBK"); //解決中文亂碼問題
$total=mysql_num_rows(mysql_query("select id from gaox")); //查詢數(shù)據(jù)的總數(shù),id是數(shù)據(jù)庫中的一個自動賦值的字段,gaox是數(shù)據(jù)庫表的名字
$info=mysql_query("select * from gaox order by time desc limit $num"); //獲取相應(yīng)頁數(shù)所需要顯示的數(shù)據(jù),order by time desc是按最后留言的排前邊,gaox是數(shù)據(jù)庫表的名字
$it=mysql_fetch_array($info);
?
名稱欄目:php提取數(shù)據(jù)庫留言顯示 php與數(shù)據(jù)庫連接制作留言板
當(dāng)前地址:http://aaarwkj.com/article22/doodscc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、網(wǎng)站收錄、定制開發(fā)、網(wǎng)站設(shè)計公司、品牌網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)