发布网友 发布时间:2022-04-23 01:56
共3个回答
热心网友 时间:2022-04-06 01:42
//删除是记录是用sql语句,比如 delete from xxx(table) where id=1 删除 id=1的记录
//数据库操作后,手动关闭是好得习惯,不手动关闭,php程序也会最后自动关闭
热心网友 时间:2022-04-06 03:00
$conn=mysql_connect("localhost","root","") or die(mysql_error());//链接数据库
mysql_select_db('db_name',$conn);//db_name是你的数据库名字
$sql='delete from table_name where id=1';//table_name是你的表名 where后跟的是删除的条件
mysql_query($sql,$conn);
mysql_close($conn);//关闭连接 养成好习惯!
热心网友 时间:2022-04-06 04:35
先链接数据库
删除数据
关闭链接
代码同上