duplicate data insert in CodeIgniter

后端 未结 2 1045
一向
一向 2020-12-06 14:33

I am just inserting data in codeigniter controller part at pastebin http://pastebin.com/KBtqrAkZ

  public function add_product()
  {
    $this->lang->l         


        
2条回答
  •  隐瞒了意图╮
    2020-12-06 15:26

    Theres a simple solution, you can redirect to some other page after adding product, like:

    redirect(base_url(). "yourcontrollername/index");
    

    Doing this will remove the post data and data would not be re-added to database.

提交回复
热议问题