php中 写两个文本框,一个按钮,点击按钮,将文本框内容传递到相对应变量
html><body><formname="form1"method="post"action=""><inputname="inputhost"type="text"/...
html>
<body>
<form name="form1" method="post" action="">
<input name="inputhost" type="text" />
<input name="inputuser" type="text" />
<label>
<input type="submit" name="Submit" value="提交">
</label>
</form>
</body>
</html>
<?php
$host=XX;
$affuser=XX;
?>
按照此结构 展开
<body>
<form name="form1" method="post" action="">
<input name="inputhost" type="text" />
<input name="inputuser" type="text" />
<label>
<input type="submit" name="Submit" value="提交">
</label>
</form>
</body>
</html>
<?php
$host=XX;
$affuser=XX;
?>
按照此结构 展开
1个回答
展开全部
<html>
<body>
<form name="form1" method="post" action="#">
<input name="inputhost" type="text" />
<input name="inputuser" type="text" />
<label>
<input type="submit" name="Submit" value="提交">
</label>
</form>
</body>
</html>
<?php
$host=$_POST['inputhost'];
$affuser=$_POST['inputuser'];
?>
<body>
<form name="form1" method="post" action="#">
<input name="inputhost" type="text" />
<input name="inputuser" type="text" />
<label>
<input type="submit" name="Submit" value="提交">
</label>
</form>
</body>
</html>
<?php
$host=$_POST['inputhost'];
$affuser=$_POST['inputuser'];
?>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询