我試圖輸入數據並將其放入數據庫,然後將其重定向到首頁。但我想在入口數據庫之後通知bootstrap通知並將其重定向到首頁?通過在CodeIgniter框架中使用引導通知插入數據後的通知
這是我的控制器
function insert() {
$barcode = $this->input->post('id_barcode');
$imageResource = Zend_Barcode::factory('code128', 'image', array('text'=>$barcode.date("Ymd")), array())->draw();
$imageName = $barcode.'.jpg';
$imagePath = './result/';
if (!is_dir($imagePath)) {
mkdir ($imagePath, 777, TRUE);
}
imagejpeg($imageResource, $imagePath.$imageName);
$this->product_m->insert_produk($imageName);
redirect('admin/product');
}
這個腳本引導通知
<script type="text/javascript">
$(document).ready(function(){
$.notify({
icon: 'fa fa-check-circle',
message: "Success <b>Entry Database</b>."
},{
type: 'info',
timer: 4000
});
});
</script>
謝謝你的答案,但$ this-> uri-> segment(3);沒有找到,我想開發你回答 –
https://ellislab.com/codeigniter/user-guide/libraries/uri.html – WRDev
不錯,它的解決我試圖使新的**功能成功**,與相同帶索引的視圖 –