试图弄清楚我怎样才能正确地做到这一点。
print_r 看起来像这样:
Array ( [0] => stdClass Object ( [quote] => "Now that's wonderful!" ) )
表创建:
$tmpl = array ( 'table_open' => '<table class="table" id="quotes-table">' );
$this->table->set_template($tmpl);
print_r($quotes);
$data = array(
array(form_checkbox('quotes'), 'Quote'),
array(form_checkbox('quotes'), 'Testing Quote Here'),
array(form_checkbox('quotes'), $quotes['quote'])
);
echo $this->table->generate($data);
?>
更新:
问题虽然当我添加超过 1 行时,它只返回那一行。所以基本上我想要一个可以从查询返回的对象,以便在视图中我可以简单地执行 $quote->quote。这样,它将显示用户的所有报价。
<?php
$tmpl = array ( 'table_open' => '<table class="table" id="quotes-table">' );
$this->table->set_template($tmpl);
$checkbox_data = array(
'name' => 'quote',
'id' => $quotes->id
);
$data = array(
array(form_checkbox($checkbox_data), 'Quote'),
array(form_checkbox($checkbox_data), $quotes->quote)
);
echo $this->table->generate($data);