我有用於顯示產品的CodegInitor系統。當一個產品視圖頁面通過URL像CodeIgnitor如何爲瀏覽頁面提供操作url
localhost/project/index.php/product/view/102
執行我想補充一個選項,以增加對特定產品的評論在此頁面,但我怎麼給
$data['action'] = site_url('product/prodcutView');
這是我有嘗試到目前爲止,但它沒有保存價值,我tihnk行動url不正確,請諮詢。
function addComment() {
// set common properties
$data['title'] = 'Add new comment';
$data['action'] = site_url('/product/ProductView');
// set empty default form field values
$this -> _set_fields();
// set validation properties
$this -> _set_rules();
// run validation
if ($this -> form_validation -> run() == FALSE) {
log_message('debug', 'comment save failed.');
} else {
// save data
$comment = array(
'product_id' => $this -> input -> post('product_id'),
'comment' => $this -> input -> post('comment'),
'review' => $this -> input -> post('review'),
);
$category_id = $this -> Comment_model -> save($comment);
}
// load view
$this -> load -> view('/product/ProductView', $data);
}
你得到的任何錯誤? –
@HardikBhavsar:不,它只是刷新頁面 –
@HardikBhavsar:如何將行動提供給特定的產品ID頁面。請指教 –