denoteone Posted February 9, 2009 Share Posted February 9, 2009 I am try to understand a few things about php templates can anyone help me fill in the gaps? $template = "templates/main_1.htm"; $inner_template1 = "templates/inner_welcome.htm";//middle of page $TBS = new clsTinyButStrong; $TBS->NoErr = true;// no more error message displayed. $TBS->LoadTemplate("$template"); $TBS->Render = TBS_OUTPUT; $TBS->Show(); when this is loaded it should show a page... now is it ok if both inner_welcome.htm main_1.htm both have the header info in them? I would think this would not be good practice? also what is the "->" after $TBS what does that do? Any help would be awesome. Quote Link to comment Share on other sites More sharing options...
trq Posted February 9, 2009 Share Posted February 9, 2009 There isn't such functionality as templates built into php. Seems your using some third party code. Id suggest you take a look at the docs, or the source code for said third party code. Quote Link to comment Share on other sites More sharing options...
denoteone Posted February 9, 2009 Author Share Posted February 9, 2009 maybe that is why I understand what is going on. I will take a look at what they have to say in there documentation. Quote Link to comment Share on other sites More sharing options...
trq Posted February 9, 2009 Share Posted February 9, 2009 also what is the "->" after $TBS what does that do? Any help would be awesome. Sorry, I didn't even read that part. The -> operator is a way to reference the methods and properties of an object ($TBS being the object in this case). You can take a look at the oop5 docs for more details. Quote Link to comment Share on other sites More sharing options...
numan82 Posted February 15, 2009 Share Posted February 15, 2009 why you dont use smarty a very good templating engine for 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.