次のコードがあります。
<?php
// configuration
require("../includes/config.php");
// if form was submitted
if($_GET['id'])
{
$id = $_GET['id'];
$id = mysql_escape_string($id);
$sql = "DELETE FROM city WHERE id = $id";
mysql_query($sql);
}
?>
これをブラウザから実行しようとすると、次のエラー メッセージが表示されます。
http://localhost/delete.php&id=3
The requested URL /delete.php&id=3 was not found on this server
http://localhost/delete.php
Notice: Undefined index: id in /home/localhost/html/delete.php on line 6
誰かが何が起こっているのかを追跡する方法を教えてもらえますか. 私が実行しているマシンは、フィドラーのようなものを実行できないことに注意してください