求助一段HTML页面的POST代码
用HTML语言创建一个按钮和一个文本框,在点击按钮将文本框里的内容直接POST到"1.PHP"里。这样该如何写了?...
用HTML语言创建一个按钮和一个文本框,在点击按钮将文本框里的内容直接POST到"1.PHP"里。
这样该如何写了? 展开
这样该如何写了? 展开
3个回答
展开全部
<form action="1.php" method="post">
请输入文字:<input type="text" name="word" value="" />
<input type="submit" value="提交" />
</form>
------> 1.php里接收变量为word的值
请输入文字:<input type="text" name="word" value="" />
<input type="submit" value="提交" />
</form>
------> 1.php里接收变量为word的值
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<form action="1.php" method="post">
<input type="text" name="text1" />
<input type="submit" />
</form>
<input type="text" name="text1" />
<input type="submit" />
</form>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
下面是我根据你的意思,写的一个简单例子,你可以运行一下,看看~~~~有什么不明白的还可以再问我~~~
Test.html页面的内容:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<div>
<form action="" method="get" name="formtest">
<input type="text" id="name" name="name" />
<input type="submit" value="Test" id="sub" name="sub" />
</form>
</div>
</body>
</html>
HTML页面提交信息后,在Test.php页面当中进行信息的获取,Test.php页面的内容:
<?php
echo $_GET['name'];
?>
页面显示的效果如下所示:
Test.html页面的内容:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<div>
<form action="" method="get" name="formtest">
<input type="text" id="name" name="name" />
<input type="submit" value="Test" id="sub" name="sub" />
</form>
</div>
</body>
</html>
HTML页面提交信息后,在Test.php页面当中进行信息的获取,Test.php页面的内容:
<?php
echo $_GET['name'];
?>
页面显示的效果如下所示:
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询