我有一个使用 kohana 3.3 从数据库调用的数组我已经将数据获取到视图中,我可以使用 print_r($variable) 获取它。我想根据数组中的数据创建一个 movenext、movefirst、moveprevious 和 movelast 按钮。
我的模型看起来像这样
public function get_customer_list(){
$cust_list= DB::select('*')->from('customers')
->order_by('id','ASC')
->execute()
->as_array();
//print_r($cust_list);
return $cust_list;
我的控制器看起来像这样
$id=@$_POST["id"];
//echo $id;
$amend = Model::factory('amendments')->get_customer_list(@$d);
$this->page_title = 'amending';
$this->content = View::factory('forms/amendment_next');
//$this->rightwidget =view::factory('rightwidget');
$this->amend = $amend;
$this->next = $id;
我的观点看起来像这样
foreach ($amend[0] as $key=>$value){
echo '<p><span>'.$key.'</span><input id="'.$next.'" class="contact" type="text" name="'.$key.'"value="'.$value.'" /></p>';
}
<a href="#" id="getnext">Next Record</a>
<a href="javascript:void(0);" id="previous">Previous Record</a><button >Next Record</button><button>Last Record</button>
我不介意使用链接或按钮
请帮助我在这里堆栈,我的大脑被锁定了。