DaveTomneyUK Posted June 14, 2006 Share Posted June 14, 2006 Hi,I am new working with classes and have a question each of my files as a call at the top and bottom to include my header and footer like below[code]require_once("header.php");require_once("footer.php");[/code]Is it possible to include them in a class so all I would need to add in my files are something like.[code]$generate->header();$generate->footer();[/code] Quote Link to comment https://forums.phpfreaks.com/topic/12023-classes-question/ Share on other sites More sharing options...
poirot Posted June 14, 2006 Share Posted June 14, 2006 Yes...[code]<?phpclass Generate{ function header() { require_once 'header.php'; } function footer() { require_once 'footer.php'; }}// Class initialization$generate = new Generate;$generate->header();$generate->footer();?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/12023-classes-question/#findComment-45732 Share on other sites More sharing options...
DaveTomneyUK Posted June 14, 2006 Author Share Posted June 14, 2006 Thanks that worked Quote Link to comment https://forums.phpfreaks.com/topic/12023-classes-question/#findComment-45746 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.