How do PHP programs pass values between model, view, and controller pages? For example, if a controller had an array, how does it pass that to the view?
EDIT:
Thank your answers. I see a couple of them stating the components are in the same page, but when I look at something like CodeIgniter, I see three separate PHP pages for model, view, and controller.
Usually your controller will create a view object and when it creates that view object it passes the information.