真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php數(shù)據(jù)表類 php8種數(shù)據(jù)類型

php獲取mysql數(shù)據(jù)庫里面的所有數(shù)據(jù)表信息

沒這么干過 mysql_list_tables 獲取 所有表信息 返回指針 mysql_tablename 獲取表名

成都創(chuàng)新互聯(lián)專注于隆德網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供隆德營銷型網(wǎng)站建設(shè),隆德網(wǎng)站制作、隆德網(wǎng)頁設(shè)計、隆德網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造隆德網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供隆德網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

myslq_num_rows函數(shù)來判斷結(jié)果指針中的表的數(shù)目

?php

mysql_connect("localhost", "mysql_user", "mysql_password");

$result = mysql_list_tables("mydb");

for ($i = 0; $i mysql_num_rows($result); $i++)

printf ("Table: %s\n", mysql_tablename($result, $i));

mysql_free_result($result);

? 這是手冊上例子 后邊的不用我說了吧 sql查詢

如何在php創(chuàng)建數(shù)據(jù)庫與數(shù)據(jù)表

創(chuàng)建數(shù)據(jù)庫:create database 數(shù)據(jù)庫名

創(chuàng)建數(shù)據(jù)表:

CREATE TABLE `users` (

`id` tinyint(10) auto_increment primary key NOT NULL,

`username` varchar(30) NOT NULL,

`age` int(10) NOT NULL

) ENGINE=MyISAM DEFAULT CHARSET=utf8;

執(zhí)行這兩個sql語句就行

php mysql 創(chuàng)建數(shù)據(jù)表

$sql = "

create table table_name (

id int(11) not null auto_increment primary key,

user varchar(255) ,

name varchar(255)

)

";

mysql_query($sql);

-------------------------------------

其實也是執(zhí)行一個sql語句~

--------------------------------------

我剛寫的。。測試成功的哈

?php

$link = mysql_connect("127.0.0.1","root","123456");

mysql_select_db("test");

$sql = "

create table table_name (

id int(11) not null auto_increment primary key,

user varchar(255) ,

name varchar(255) charset gbk

)

";

mysql_query($sql) or die(mysql_error());

?


網(wǎng)頁題目:php數(shù)據(jù)表類 php8種數(shù)據(jù)類型
URL網(wǎng)址:http://weahome.cn/article/dosjddp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部