1
<form method="POST" name="send"
<input type="hidden" name="title" value="<?php echo ($pro->title;?)">
</form>

我不希望人们看到隐藏的信息,这是将变量传递给我的控制器的最佳方式吗?

这是我控制器中的代码

$this->email->subject('subject '.$_POST['title'].' ' );

谢谢!

4

1 回答 1

3
<form method="POST" name="send"
<input type="hidden" name="title" value="<?php echo ($pro->title;?)">

应该

<form method="POST" name="send">
<input type="hidden" name="title" value="<?php echo $pro->title; ?>" />

为此,我建议您使用SESSION,因为hidden可以更改字段。

于 2012-10-28T12:31:20.743 回答