PHP的新手。一直在尝试一个简单的程序从2个字段中获取数据并使用GET方法显示它。
继承HTML代码
<html>
<head>
<title>Simple Form</title>
</head>
<body>
<form action="send.php" method="get" id="sample">
Name:<input type="text" name="user"/>
Message:<input type="text" name="message"/>
<input type="submit"/>
</form>
</body>
</html>
继承PHP代码:
<html>
<body>
Welcome <?php echo $_GET["user"]; ?>
Message <?php echo $_GET["message"]; ?>
</body>
</html>
GET方法在浏览器的地址栏中将数据作为QueryString提取,但在浏览器窗口中不显示任何内容。
答案 0 :(得分:0)
代码完美无缺。重新安装WAMP服务器解决了这个问题。
答案 1 :(得分:-1)
您需要启动服务器。 转到您网站的index.html文件所在的目录,然后运行命令行php -S localhost:5000。 5000是php正在收听的端口,你可以把任何值放在那里.... 如果你还没有安装php或者是Wamp