dbm数据库详解(5)

dbm数据库详解(5)

删除数据。。。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>

<body>
<?php
$db = dbmopen('db/mydb.db','w');
$del = dbmdelete($db,2);
//echo $del;//删除为0,不成功为-1;视系统而定
/*if(!$del) echo "删除成功";
else echo "没有这个用户";*/
?>
</body>
</html>

学习中