gpt4 book ai didi

php - 尝试修改 codeigniter 应用程序数据库表中的字段,但知道如何识别该表

转载 作者:行者123 更新时间:2023-11-29 19:10:34 26 4
gpt4 key购买 nike

我是 code igniter php 框架的初学者。今天,我有一项修改现有代码的任务,但不知何故,我在尝试查找数据库表时迷失了方向。这是呈现 View 的 Controller 片段

..........
$data["all_types"] = $this->data_model->get_data("all_types",300,"Asc");
$this->load->view("preview_brands",$data);
...........

加载 View 时,我将在 View 中迭代以加载数据,如图所示

 <div class="decoration"></div>
<?php foreach($all_types as $item): ?>
<div style="display:block;color:#000;">
<a style="font-size:17px;margin:15px 2px;font-family:Cgothic;"
href="<?php echo site_url()."...../..../".$item["id"]; ?>"
class="scale-hover"
title="<?php echo str_replace("_"," ",$item["name"]);?>">
<strong><?php echo str_replace("_"," ",$item["name"]);?></strong>
</a>

</div>
<?php endforeach; ?>

这是如图所示的模型片段代码

function get_data($db,$i,$order)
{
$this->db->order_by("name",$order);
$this->db->where('consent',"yes");
$query=$this->db->get($db);
return $query->result_array();
}

我的挑战是如何定位或识别上述模型指向的数据库表以获取数据。希望有人帮助我

最佳答案

all_types 是您的表名称。

$this->db->get($your_table name),get方法以表名作为参数。

Get Method Documentation

如果需要更多帮助,我很乐意提供帮助。

快乐编码

关于php - 尝试修改 codeigniter 应用程序数据库表中的字段,但知道如何识别该表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43115765/

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