I have developed many web applications in ASP.NET in which I have make use of UserControls to manage header footer and any other common part of a web page. Now I am developing an app in PHP, is there anything which I can use as an alternative of UserControls??
How I can implement the similar concept in PHP?
Thanks?
A second answer which is a bit harder to explain in detail here, is to build your own ‘UserControl’ classes. The Classes would have the neccessary properties that you require, and Would have a RenderHTML() method that would output the control to the screen.