gpt4 book ai didi

php - CodeIgniter:如何从 View 获取输入并在 Controller 中使用它

转载 作者:行者123 更新时间:2023-12-02 22:14:10 24 4
gpt4 key购买 nike

我是 CodeIgniter 的新手(使用 PHP)。所以现在我的网页上有一个文本框,要求访问者输入他们的名字。我取了一个名字(我将使用变量 $username 作为它)并且我想将它保存在我拥有的数据库中。我想知道我该怎么做。我是否以某种方式将 $username 传递给 Controller ​​中的函数,然后将该值传递给我的模型?非常感谢,一个简单的例子将不胜感激!!

最佳答案

<form method="post" action="<?php echo base_url();?>controller/save" name="form">
<label>User Name</label>
<input type="text" name="Username">
<input type="submit" value="Add"/>
</form>

在 Controller 中

function save
{
$arrData["Username"] = $this->input->post("Username");
$this->User_model->Add($arrData);
}

在用户模型中

function Add($arrData) { 
if($this->db->insert(tableName, $arrData))
return true;
else
return false;
}

关于php - CodeIgniter:如何从 View 获取输入并在 Controller 中使用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14764458/

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