我的网页有问题。
我有这个网页,用户可以在其中将他/她的名字输入到输入框中。然后点击go,输入的内容将显示在同一页面上。
我怎样才能用php做到这一点?
这是我的代码:
索引.html
<form action="display.php" method="post">
<input type="text" name="textinput">
<input type="submit">
</form>
显示.php:
<?php
$msg=$_POST['textinput'];
echo ($msg);
?>