首頁  >  文章  >  後端開發  >  怎樣用php來建立資料表

怎樣用php來建立資料表

藏色散人
藏色散人原創
2019-09-18 10:20:366530瀏覽

怎樣用php來建立資料表

怎麼用php來建立資料表

#開啟php的編輯器,寫上這個程式的註解內容。

怎樣用php來建立資料表

然後新建一個函數create_table

怎樣用php來建立資料表

#新建需要連接資料庫的變數並賦值。

怎樣用php來建立資料表

然後透過mysqli連接資料庫。

怎樣用php來建立資料表

連接好之後,我們開始寫建立資料表的sql語句。

$sql="create table test1(
id int(7) unsigned not null auto_increment primary key,
username varchar(64) not null,
age int(3) not null,
register_time timestamp
)";

怎樣用php來建立資料表

執行sql語句。 $connect->query($sql)

怎樣用php來建立資料表

呼叫這個函數。

create_table();

怎樣用php來建立資料表

更多PHP知識,請造訪PHP教學

以上是怎樣用php來建立資料表的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn