php訪問資料庫

2022-05-13 02:26:15 字數 2189 閱讀 1826

1.建立資料庫`lyb`

create database `lyb`;

create table  `lyb1` (

id int not null auto_increment ,

title varchar(

200) not null ,

content text not null ,

author varchar(

30 )not null default '彭軍'

,email varchar(

40 ) not null default '

[email protected]',

primary key ( id ) ,

unique (title)

) engine = innodb default charset = utf8

資料庫連線檔案conn.php

header("

content-type: text/html; charset=utf-8

");

$db_server = "

localhost";

$db_name = "

root";

$db_pwd = ""

; $conn =mysql_connect($db_server,$db_name,$db_pwd);

if (!$conn)

mysql_query(

"set names utf8

");

2.建立前台頁面 5.1.php

<?php 

/**

* @authors peng--jun

* @email [email protected]

* @date 2015-11-07 13:50:48

* @link

* @version $id$

****************************************== */

header(

"content-type: text/html; charset=utf-8

");

if (isset($_post['

submit

']))

?>"en

">

3.從資料庫中獲取資料顯示在前台頁面

<?php 

/**

* @authors peng--jun

* @email [email protected]

* @date 2015-11-07 13:40:08

* @link

* @version $id$

****************************************== */

header(

"content-type: text/html; charset=utf-8

");

require(

"include/conn.php");

mysql_select_db(

"lyb

",$conn);//

選擇資料庫

$result = mysql_query("

select * from `lyb1`

",$conn);//

選擇資料庫表

?> "

en">"

1">

"#ccc

">

序號標題內容

作者郵箱

<?php

while ($row =mysql_fetch_assoc($result))

?>

共有= mysql_num_rows($result) ?>條記錄

<?php

//釋放資源,關閉結果集

mysql_free_result($result);

mysql_close($result);

?>

頁面瀏覽

PHP訪問資料庫

在php中,無論訪問哪種資料庫,都需要使用sql。php最適合與mysql資料庫配合使用,主要原因是php提供了很多操作mysql資料庫的內建函式,可方便地實現訪問和操作mysql資料庫的各種需要。php訪問mysql資料庫的具體步驟 1 建立與mysql伺服器的連線 2 設定字符集 3 選擇要操作...

PHP 資料庫訪問

一 過時方法 設定頁面編碼格式 header content type text html charset utf 8 1 生成鏈結 db connect mysql connect localhost root 517 localhost 伺服器的位址 root 資料庫的使用者名稱 517 資料庫...

php 資料庫訪問

計應134班 楊超 1.為了更好地設定資料連線,一般會將資料連線所涉及的值定義成變數.12 3456 7 mysql server name localhost 改成自己的mysql資料庫伺服器 mysql username root 改成自己的mysql資料庫使用者名稱 mysql passwor...