如何传递有关表单的隐藏信息?
<form action="index.php" method="post">
<textarea rows="2" cols="30" NAME="com" >
</textarea>
<input type="submit" name="com_submit" value="com" />
</form>
我需要看到评论是针对哪种类型的帖子传递的,所以我需要通过这个表单传递变量$ type的值,那么我该怎么做呢?
我是初学者,如果我问任何愚蠢的问题,我很抱歉?
答案 0 :(得分:0)
使用hidden field:
<input type="hidden" name="form_type" value="theFormType" />
用户不会在表单上看到隐藏的输入。
如果隐藏表单的值来自php,您可以使用:
<input type="hidden" name="form_type" value="<?php echo $type ?>" />
答案 1 :(得分:0)
如果我理解正确你想使用隐藏的输入 hidden input来自w3schools的精彩摘要