On one of my websites I have 2 forms on one page, I am having a problem, with validation_errors(); basically what is happening, is for one of the forms I am che
What I did was divide both forms. The view would be like
Now, in the controller you can have two different functions for each validation:
//Controller
function some_action(){
//validate form and code
}
function other_action(){
//validate form2 and code
}
Now, all validation messages will appear in the same place but will only show the messages of each form. Hope that helps