Hi,
I process 3 different forms with 3 different ids/names in the same template.
Now my post values seem to get mixed up between the forms.
What I tried is
$profileForm->processInput($input->post);
if ($profileForm->id == "profile-form") {
//do something
}
Analogue with th...