php与Mysql的一些简单的操作
先贴代码
代码如下:
$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连接
?>
关键内容在于
1、链接数据库
2、创建表
3、根据需求充实表内容
以上就是本文的全部内容了,希望小伙伴们能够喜欢。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software