私は 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>
リンクやボタンを使っても構いません
ここでスタックを助けてください。私の脳はロックされています。