php与Mysql的一些简单的操作
程序员文章站
2022-10-19 20:58:57
先贴代码
复制代码 代码如下:
&nb...
先贴代码
复制代码 代码如下:
<html>
<head>
<title>数据库相关</title>
</head>
<body>
<?php
$con = mysql_connect("localhost","root","root"); //链接数据库
if(!$con){
die('连接失败!' . mysql_error()); //判断是否成功
}
/* if(mysql_query("create database testdb",$con)){ //通过mysql_query 查询或者发送命令
echo "创建testdb成功";
}
else{
echo "失败原因:" . mysql_error(); //判断是否创建成功
}
*/
mysql_select_db("testdb",$con); //选择链接刚刚创建的数据库
$sql = "create table persons
(personid int not null auto_increment,
primary key(personid),
firstname varchar(15),
lastname varchar(15),
age int)
"; //mysql 语句 创建表
mysql_query($sql,$con); //执行sql语句
mysql_close($con); //关闭mysql连接
?>
</body>
</html>
关键内容在于
1、链接数据库
2、创建表
3、根据需求充实表内容
以上就是本文的全部内容了,希望小伙伴们能够喜欢。
上一篇: 古代妃嫔戴的“指甲套”是什么模样?为何会又长又尖?
下一篇: php设计模式之单例模式实例分析