我创建了一个名为delete.php
使用以下代码
<?php
require_once("database.php");
$con = mysql_connect($config["db_server"],$config["db_user"],$config["db_pass"]);
mysql_select_db($config['db_name'], $con);
// The SQL statement that deletes the record
$strSQL = "DELETE FROM records WHERE record_id = 1";
mysql_query($strSQL);
// Close the database connection
mysql_close();
?>
现在,如果我转到http://www.domain.com/delete.php
which 将删除表记录中 1 的记录 id。
我如何使用 php 字符串,所以当我去http://www.domain.com/delete.php?del?=25
删除它时record_id
25
?
谢谢。