vote up 2 vote down star
1

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?

flag

77% accept rate

2 Answers

vote up 1 vote down

The UserControl concept does not explicitly exist in PHP, though you can encapsulate the the functionality that you want in a file and use the include() function to place it into your pages where you wish.

<html>
 <head>
   <title></title>
 </head>
 <body>
   <?php include('header.php'); ?>
   <?php include('pageBody.php'); ?>
   <?php include('footer.php'); ?>
 </body>
</html>

Note that Smarty provides for much better separation of processing and rendering, and will make this type of thing super smooth.

link|flag
I know the include very well, but using include I can't pass a variable as Property, which we can easily do in UserControls. To make it more clear, let's say I want to pass a variable to ma usercontrol, on the basis of which my website navigation selects and deselect current menu in the header. But using include how can i perform this ?? – Prashant Jun 6 at 17:00
Check out Smarty. This sort of thing is possible using it's templating engine. It will be a bit of a paradigm shift for you though. – Matthew Vines Jun 6 at 17:09
vote up 1 vote down

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.

link|flag
hmmmmmm... looks cool.. we can apply this... but then for every control we have to make separate Ucontrol class ?? – Prashant Jun 6 at 18:39
I would use an interface to ensure that all your control classes behave in the same manner. But yeah you would have to create a separate class for every user control you wished to make. But this is the same in Asp.net. All the normal inheritance rules would apply, where one ucontrol could inherit from another, etc. – Matthew Vines Jun 6 at 22:29
Yes, for every different control we have to create a UserControl in asp.net too and same can be applied to PHP class method. :) – Prashant Jun 7 at 4:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.