www.gusucode.com > 搜索引擎蜘蛛访问日志查看器(php) 1.0码程序 > del.php

    <?php
$conn = new COM('ADODB.Connection') or die('can not start Active X Data Objects');
$conn->Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" . realpath("bot.mdb")); 
if($_GET['Act']=='Delete')
{
$sql="delete from bot where id=".$_GET['id'];
$RS = $conn->Execute($sql);
header("location:zhizhu.php");
}
?>