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] 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] 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 Link to comment https://forums.phpfreaks.com/topic/12023-classes-question/#findComment-45746 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.