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:
Usually your controller will create a view object and when it creates that view object it passes the information.
content = $content; include_once('myPage.inc.html'); } } ?>