php echo html 无法正确使用 post 数据

php echo html cannot use post data correctly

好的,所以我有一个 php 页面,那是 post 一段数据到 hello.php 你好 php 基本上只是一个 echo stament 回显 html

尝试将 post数据添加到 hiddin 输入字段时出现问题

这是我的 hello.php 代码的示例

<?php 
echo"
<form action='polly.php' method='post' required='required'>
<input class='required' name='fpuser' id='fpuser' value=\"$_POST\">
";
?>

上面的这个工作正常,但是当我尝试访问 post 键时,我的页面就无法工作

<?php 
echo"
<form action='polly.php' method='post' required='required'>
<input class='required' name='fpuser' id='fpuser' value=\"$_POST['username']\">
";
?>

我该如何解决这些人

您必须将变量与回显字符串分开。

<?php 
echo "
<form action='polly.php' method='post' required='required'>
<input class='required' name='fpuser' id='fpuser' value=\"".$_POST['username']."\">
";
?>