缺少HTML表单元素

时间:2017-10-21 13:11:44

标签: php html

具体问题是文本框没有显示在我的页面上。我实际上正在关注构建一个简单论坛的教程。你能协助我发现这个错误吗?

<?php
echo '<tr> <td colspan = "2"> <h2> Reply: </h2> <br/>
    <form method = "post" action = "reply.php? id = '. $row ['Topicid'].
  '<textarea name= "reply-content"> </textarea>'. '<br/>'. '<br/>'.
        '<input type= "submit" value = "Post Reply"/>
    </Form> </td> </tr>';
?>

1 个答案:

答案 0 :(得分:1)

您的代码中有2个问题。 首先,您没有关闭第一个表单标记,其次,您正在使用<form>标记关闭</Form>标记。 你的代码应该像这样:

<?php
echo '<tr> <td colspan = "2"> <h2> Reply: </h2> <br/>
    <form method = "post" action = "reply.php? id = '. $row ['Topicid'].
  '"><textarea name= "reply-content"> </textarea>'. '<br/>'. '<br/>'.
        '<input type= "submit" value = "Post Reply"/>
    </form> </td> </tr>';
?>