<form method="POST" name="send"
<input type="hidden" name="title" value="<?php echo ($pro->title;?)">
</form>
我不希望人们看到隐藏的信息,这是将变量传递给我的控制器的最佳方式吗?
这是我控制器中的代码
$this->email->subject('subject '.$_POST['title'].' ' );
谢谢!
<form method="POST" name="send"
<input type="hidden" name="title" value="<?php echo ($pro->title;?)">
</form>
我不希望人们看到隐藏的信息,这是将变量传递给我的控制器的最佳方式吗?
这是我控制器中的代码
$this->email->subject('subject '.$_POST['title'].' ' );
谢谢!