gpt4 book ai didi

php - 如何在文本框中检索 Controller 发送的值?

转载 作者:行者123 更新时间:2023-11-29 22:08:49 25 4
gpt4 key购买 nike

我正在使用 codeigniter。我需要将数据从表发送到 View 页面。我有一个带有表 settings 的数据库,其中有一个税值。我编写了一个函数来查看 Controller 中的 View 页面。我有一个模型文件,其中有一个函数可以获取税值。在我的 View 页面中,我需要在文本框中显示内容。怎么做?这是我在模型页面中获取税值的函数。

public function get_settings()
{
$this->db->select('settings.id');
$this->db->select('settings.company_tax14');
$this->db->from('settings');
$query = $this->db->get('settings');
return $query->row();
}

这是我的 Controller 页面,我将税值发送到查看页面。

<?php
class Admin_service extends CI_Controller {
public function add();
{

$data['settings'] = $this->settings_model->get_settings();

$data['main_content'] = 'admin/service/add';
$this->load->view('includes/template', $data);

}
}
?>

这是我的观点

<input type="text" value="tax_edit"/>

有人可以帮助我吗?

最佳答案

<input type="text" value="<?php echo $settings->company_tax14?>"/>

关于php - 如何在文本框中检索 Controller 发送的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31890913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com