1 Comment to “Codeigniter – Post resubmit problem on refresh”

  1. harman

    Feb 20th, 2010

    No need to use another controller for POST method.
    USE same controller with some method like..

    ———–your_controller———–
    index(){
    //YOUR controller DATA
    }
    save(){
    //GET YOUR POST DATA HERE
    //SAVE YOUR POST DATA
    redirect(’your_controller’);
    }


Leave a Reply