I have a simple PHP page named show_id.php as below, then I open an IE winow, and type the "show_id.php?id=123456789" in the address window of the IE, the pages only shows "test",no the value of the id was shown on the page. Where is wrong? Thanks!
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>test</title>
</head>
<body topmargin="0">
<?echo "test<br>\n";
<? echo $id; ?>
</body>
</html>