Posted on 2011-04-09 17:32
Kevin_Zhang 阅读(331)
评论(0) 编辑 收藏 引用 所属分类:
PHP
在一个如果是在本地一定要用浏览器通过
http://127.0.0.1/或
http://localhost/打开WAD-07.html,
也就是WAD-07.html需要在php服务器目录下。
此外WAD-07.html和WAD-08.php需要在同一目录
我用下面的代码试过了,好用。
WAD-07.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<form method="post" action="WAD-08.php">
名前<br>
<input type="text" name="username">
<input type="submit" value="send">
</form>
</body>
</html>
WAD-08.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<?php
echo($_POST["username"]);?>!
</body>
</html>