PHP操作mysql数据库[增删改查]

操作数据库前必须进行连接。

注意:连接数据库一般与断开连接成对出现,为节省资源,请链接数据库操作完毕后,务必断开连接释放资源。

连接数据库见这篇文章:代码狗——PHP连接数据库操作

增加数据已经写过了,这里就不多做说明了,详情查看:代码狗——PHP操作mysql数据库插入数据

 

增加数据

//增加数据
mysql_select_db("mytest",$con);//选择要操作的数据库
$sql="insert into user(username,password,email,jf,dj,regesttime,logintime) values('1016134519','8008208820','1016134519@qq.com',1000,10,";
$sql=$sql."'".gettime()."',"."'2016-05-14 12:05:59'".")";
$fh=mysql_query($sql,$con);
//判断是否插入成功
if($fh){
 echo "插入成功";
}else{
 echo "插入失败";
}

删除数据

mysql_select_db("mytest",$con);//选择要操作的数据库
mysql_query("delect from user where id='1'");//删除id字段为1的数据,可根据实际情况进行更改

修改数据

mysql_select_db("mytest",$con);//选择要操作的数据库
//修改user表中id字段值为1的数据,password字段值改为123456789,email字段值改为123456789@qq.com
mysql_query("UPDATE user set password='123456789',email='123456789@qq.com' where id='1'");

查询数据

mysql_select_db("mytest",$con);//选择要操作的数据库
//查询user表中id字段值为1的数据不写where id='1'则返回所有user表数据
$result=mysql_query("select * from user where id='1'");
while($row=mysql_fetch_array($result)){
 echo "账号:".$row['username']."密码:".$row['password']."邮箱:".$row['email']."积分:".$row['jf']."等级:".$row['dj']."注册时间:".$row['regesttime']."</br>";
}

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/241373.html

(0)
上一篇 2022年4月7日 00:35
下一篇 2022年4月7日 00:35

相关推荐

发表回复

登录后才能评论