1、
c
o
n
=
m
y
s
q
l
c
o
n
n
e
c
t
(
"
l
o
c
a
l
h
o
s
t
"
,
"
p
e
t
e
r
"
,
"
a
b
c
123
"
)
;
数
据
库
连
接
2
、
m
y
s
q
l
s
e
l
e
c
t
d
b
(
"
数
据
库
库
名
"
,
con=mysql_connect("localhost","peter","abc123"); 数据库连接 2、mysql_select_db("数据库库名",
con=mysqlconnect("localhost","peter","abc123");数据库连接2、mysqlselectdb("数据库库名",con); // 连接那个库
2、mysql_close(
c
o
n
)
;
/
/
数
据
库
的
关
闭
3
、
m
y
s
q
l
q
u
e
r
y
(
"
c
r
e
a
t
e
d
a
t
a
b
a
s
e
s
m
y
d
b
"
,
con); //数据库的关闭 3、mysql_query("create databases my_db",
con);//数据库的关闭3、mysqlquery("createdatabasesmydb",con); //向mysql输入函数
4、数据库的创建
create table persion(
persionId int not null auto_increment primary key,
name varchar(15),
age int ,
);
5、mysql_fetch_array(); //取出下一行的数据
例如:
while(
r
o
w
=
m
y
s
q
l
f
e
t
c
h
a
r
r
a
y
(
row= mysql_fetch_array(
row=mysqlfetcharray(result)){
echo
[
′
f
i
r
s
t
N
a
m
e
′
]
.
"
"
.
['firstName']." ".
[′firstName′]."".row[‘lastName’];
echo “
”;
6、order by 关键词
asc 默认升序 desc 默认降序
7、odbc_exec( c o n , con, con,sql);