I didn't find any info on searches when I looked this up. I've been doing a lot of research on design patterns but I haven't seen anything as far as routing goes. What I mean is this: back in my php days I would write code on one page and then pass it to the next. That created (though I wasn't aware of it at the time) tightly coupled code where changing the routing required I muddle through a long chain of pages.
I was wondering if there was any specific pattern or class of patterns that deal with sending our form data back to a central object and having that call the next form. So for example I would pass back to a routing.php rather than signUpPage2.php. Then routing.php would passs the data to signUpPage2.php.
I know this is what PHP Cake and RoR try to do but I am specifically wondering if there is a pattern for this. This doesn't seem to just be MVC I don't thing but I could be wrong.
Thanks!
Edit, does anyone have any book recommendation for these types of patterns? Thanks