如何回应textarea的数据

时间:2017-03-03 23:25:32

标签: php html5

在PHP中,如何回显textarea的值?我下面的代码不起作用。

select    T1.ID,
          case count(*) when count(T2.value) 
            then 'Type1'
            else 'Type2'
          end as Type 
from      T1 
left join T2 on T1.value = T2.value
group by  T1.ID

我在一个名为' index.php'的单独文件中有这个。以上代码位于' index.html'

<form name="code_editor" action="index.php" method="post">
  <textarea name="code" rows="8" cols="80"></textarea>
  <input type="submit" value="Upload">
</form>

1 个答案:

答案 0 :(得分:0)

您需要抓住您尝试回复的实际字段。

<?php
  echo htmlspecialchars($_POST["code"]);
?>

编辑:我添加了&#34; htmlspecialchars&#34;为了安全。不是技术要求,但要确保你这样做。