devilsvein Posted January 1, 2013 Share Posted January 1, 2013 How would I create a php template that has a banner going across the top, menubar on the left, actual page content on the right and footer at the bottom. I prefer not to keep rewritting the same code over and over.....hence create a template Quote Link to comment Share on other sites More sharing options...
trq Posted January 1, 2013 Share Posted January 1, 2013 Seems simple enough, where exactly are you stuck? Quote Link to comment Share on other sites More sharing options...
Jessica Posted January 1, 2013 Share Posted January 1, 2013 Either use a template engine like Smarty or just use includes. Quote Link to comment Share on other sites More sharing options...
devilsvein Posted January 1, 2013 Author Share Posted January 1, 2013 so how does include know where to position the code... would it need to be in a function and i call the function on the page. Quote Link to comment Share on other sites More sharing options...
trq Posted January 1, 2013 Share Posted January 1, 2013 include includes the included code where you put the call to include. Quote Link to comment Share on other sites More sharing options...
devilsvein Posted January 1, 2013 Author Share Posted January 1, 2013 sorry could you elaborate on that. I don't quite fully understand Quote Link to comment Share on other sites More sharing options...
trq Posted January 1, 2013 Share Posted January 1, 2013 When you include a file, it is included right where the call to include is placed. Quote Link to comment Share on other sites More sharing options...
devilsvein Posted January 1, 2013 Author Share Posted January 1, 2013 (edited) ah so i could have like, as a example //some code here then .. echo "<div align=left>"; include "menu"; echo "</div> <div align=right>"; include "page"; echo "</div"> Edited January 1, 2013 by devilsvein Quote Link to comment Share on other sites More sharing options...
wright67uk Posted January 1, 2013 Share Posted January 1, 2013 Create your banner that you would like to use and save it as a separate file. eg. banner.php You can then include the whole file. eg. <?php include 'banner.php'; ?> Quote Link to comment 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.