我对此脚本有疑问:
<form action="edit.php" method="GET">
<a class="btn btn-default" href="editj.php?id=3">Edit</a>
</form>
&#13;
在我的edit.php文件中我有:
<?php session_start(); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"xml:lang="pl" lang="pl">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="content-langiage" content="pl" />
<title>Praca inżynierska</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="kontener_glowny">
<?php
include 'topmenu.php';
?>
<div id="kontener">
<?php
$id = $_GET['$id'];
echo $id;
?>
</div>
<div id="stopka">
Stopka
</div>
</div>
</body>
</html>
&#13;
我的网络浏览器显示错误:注意:未定义的索引:第19行的M:\ xampp \ htdocs \ apka \ edit.php中的$ id。
我不知道如何才能获得我在链接中的论点的价值, 这个脚本应该显示我id = 3。
答案 0 :(得分:0)
只需使用 $ _ GET [&#39; id&#39;] 代替 $ _ GET [&#39; $ id&#39;]