输入PHP后显示带回声的输入文本

时间:2012-01-28 15:21:35

标签: php html text textbox

我想做一些非常简单的事情。用户在HTML文本框中输入文本然后点击提交,PHP回显是输入的文本。我搜遍了所有,我无法找到如何做到这一点!必须有一些方法!我想要这样的东西,除了$foo是输入的文本。

<html>
<input type="text" name="something" value="$foo"/>
<html>
<?php
echo $foo = "ben";
echo "foo is $foo"; // foo is foobar


?>

1 个答案:

答案 0 :(得分:10)

FTFY

<html>
<head><title>some title</title></head>
<body>
  <form method="post" action="">
    <input type="text" name="something" value="<?= isset($_POST['something']) ? htmlspecialchars($_POST['something']) : '' ?>" />
    <input type="submit" name="submit" />
  </form>

<?php
if(isset($_POST['submit'])) {
  echo 'You entered: ', htmlspecialchars($_POST['something']);
}
?>
</body>
<html>