我想做一些非常简单的事情。用户在HTML文本框中输入文本然后点击提交,PHP回显是输入的文本。我搜遍了所有,我无法找到如何做到这一点!必须有一些方法!我想要这样的东西,除了$foo
是输入的文本。
<html>
<input type="text" name="something" value="$foo"/>
<html>
<?php
echo $foo = "ben";
echo "foo is $foo"; // foo is foobar
?>
答案 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>