如何在视图中发送名称我不知道的变量?

时间:2013-03-30 16:09:28

标签: php mysql sql codeigniter

我正在尝试使用codeigniter创建一个网站。我在数据库中有两个表。这些表是Category(Category Name,Category_Id)和Item(Item_Name,Category_id)。现在,在我看来,我想在不同的表中显示不同类别的项目。

到目前为止,我已经想出了这个,但显然它没有用。模型中的代码就是这样。

$query = 'select category_id as id, category_name as name from category;';
    $result = $this->db->query($query);
    $data['category'] = $result->result_array();
    foreach($data['category'] as $d)
    {
        $query = "select item_name as name from item where item_catagory_id = '{$d['id']}';";
        $result = $this->db->query($query);
        $data["{$d['id']}"] = $result->result_array();
    }
    $this->load->view('view', $data);

视图中的代码是这样的。

<?php foreach($category as $c):?>
            <h2><?php echo $c['name']; ?></h2>
            <table>
                <tr>
                    <td>Item Name</td>
                </tr>
                <?php foreach($c['id'] as $d): ?>
                <tr>
                    <td><?php echo $d['name'];?></td>
                </tr>
                <?php endforeach;?>
            </table>
        <?php endforeach;?>

但是它说“为foreach()提供了无效的参数”。它还说错误在这一行:

<?php foreach($c['id'] as $d): ?>

1 个答案:

答案 0 :(得分:0)

如果我理解你想要完成什么,那么这就是你想要的:

更改

$data["{$d['id']}"] = $result->result_array();

要:

$d['items'] = $result->result_array();

然后在你看来,你只需要像这样做第二个foreach:

<?php foreach($c['items'] as $d): ?>

这样您就可以使用已知密钥将项目添加到类别中。