在不带格式的CodeIgniter中,可以通过以下步骤将文本框的值直接赋值给session:
$this->load->library('session');
<form method="post" action="<?php echo base_url('controller/method'); ?>">
<input type="text" name="textbox" />
<input type="submit" value="Submit" />
</form>
public function method()
{
$textboxValue = $this->input->post('textbox');
$this->session->set_userdata('textboxValue', $textboxValue);
}
public function anotherMethod()
{
$textboxValue = $this->session->userdata('textboxValue');
// 使用$textboxValue进行后续操作
}
这样,你就可以在不带格式的CodeIgniter中将文本框的值直接赋值给session了。
请注意,以上答案中没有提及具体的腾讯云产品,因为与该问题的主题不相关。如果你需要了解腾讯云的相关产品,可以访问腾讯云官方网站或咨询腾讯云的客服人员。
领取专属 10元无门槛券
手把手带您无忧上云