Re: Templating in PHP Programming Web Development by benjaminFowl87 Hi there, Wasn't sure if you meant building a templating system or using a templating system. Anyway a quick google search would have provided you with these [url]http://www.webresourcesdepot.com/19-promising-php-template-engines/[/url] [url]http://www.codewalkers.com/c/a/Display-Tutorials/Writing-a-Template-System-in-PHP/[/url] hope these help Re: Templating in PHP Programming Web Development by chrishea The rainTPL website seems to be gone but rainTPL can still be found at: [URL="http://www.jooria.com/Tutorials/website-programming-16/templating-your-site-with-raintpl-141/"]http://www.jooria.com/Tutorials/website-programming-16/templating-your-site-with-raintpl-141/[/URL] TinyButStrong Templating System, the basics and simple tweaks Programming Web Development by veedeoo …I talked about how light and simple is the tinybutstrong templating engine. However, I began to wonder why not too…methods and 5 properties. This one file makes it a templating engines runner up :). How do we use TinyButStrong? Please… can easily modify it to become functional in smarty templating environment.. In fact we can change the delimeter to… Which is the best templating system Digital Media UI / UX Design by RonaldDuncan … it works with the most popular/easiest to use/best templating system. Our current system is to generate XML and then… with frameworks like dotNet. Please let me know your favourite templating systems and why they are better or worse than others… PHP Custom templating class: Help Programming Web Development by Stefano Mtangoo …. Now I have never done any complex templating apart from simple include kind of templating. Now I wrote this base class and… Re: Which is the best templating system Digital Media UI / UX Design by RonaldDuncan One of our team wrote a gossip site in smarty, and liked the templating system. We have also tried Mako, and the person with smarty experience thought it was better. However, it means moving over to python, which has advantages and disadvantages. Re: Which is the best templating system Digital Media UI / UX Design by Airshow … Side Includes (SSI). OK, it's not [I]proper[/I] templating by itself but it's great for throwing common, static… Re: What is your Favorite Templating Programming Web Development by diafol … isn't as good. But, once you've used one templating system, I suppose the basics are pretty much the same… collection of common includes, so not a proper grown-up templating system, but that's they way I like to work… Re: What is your Favorite Templating Programming Web Development by Stefano Mtangoo … isn't as good. But, once you've used one templating system, I suppose the basics are pretty much the same… collection of common includes, so not a proper grown-up templating system, but that's they way I like to work… Re: PHP Custom templating class: Help Programming Web Development by mschroeder Generally the templating functionality would be rolled into the "view" component … Re: PHP Custom templating class: Help Programming Web Development by Stefano Mtangoo [QUOTE=mschroeder;1660402]Generally the templating functionality would be rolled into the "view" component … What is your Favorite Templating Programming Web Development by Stefano Mtangoo I wanted to know how people here in DW use which templating system Re: What is your Favorite Templating Programming Web Development by diafol Rain TPL much easier once you know the basics of templating. Perhaps Smarty is the 'industry standard' and has better documentation. … Re: What is your Favorite Templating Programming Web Development by Stefano Mtangoo …]Rain TPL much easier once you know the basics of templating. Perhaps Smarty is the 'industry standard' and has better documentation… Re: What is your Favorite Templating Programming Web Development by mschroeder …/xsl but it still one of my favorite methods for templating. If you're familiar with ZF then this might be… RainTPL for FAST Templating Programming Web Development by diafol … help me" thread, but a heads-up on a templating engine I've been using for a while called RainTPL… Re: RainTPL for FAST Templating Programming Web Development by pritaeas …). All in all, I think it is a very nice templating engine to start using. Re: PHP templating Programming Web Development by whitestream6 … been looking through and learning PHP, but trying to do templating is a nightmare though. I'll start a new thread… templating question Programming Software Development by yairzick I have a class holding a pointer to a templated class: [ class A { protected: Feature<Base>* m_p_feature; }; now I want to derive A with some derivative of Base: class B : public A { public: B() { m_p_feature = new Feature<Derived>(); } }; where Derived is Derived from Base ] C++ won't allow this. Why? Re: templating question Programming Software Development by amrith92 > C++ won't allow this. Why? Well, if you have touched upon the subject of templates in C++, then you must know that C++ templates are **type-specific**. This means that once you have declared a pointer(well frankly, *any* instantiation) to a templated class, using a certain `<class>` or `<typename>`, you will have to stick to it, … Re: templating question Programming Software Development by siddhant3s First of all let me simplify your code (and remove unnesasarily added inheritence): So now, have a look at the snippet below [code=cpp] #include<iostream> template<typename T> class tc{};//a template class class Base{};//a base class class Derived : public Base { void der_fct(); /* ... */ };//a derived class int main() { … templating/linked lists... compiling errors Programming Software Development by windermere Here is the LinkedList.h file: [CODE]// LinkedList.h -- class for a linked list as a data structure template <class DataType> struct Node { DataType info; Node<DataType> *next; }; // LinkedList maintains a current position in list after each function call // If an object of a struct is used for DataType, the == operator … Re: templating/linked lists... compiling errors Programming Software Development by bamcclur Your cpp worked with my small driver that I made [CODE]#include <string> #include "LinkedList.h" using namespace std; int main(){ LinkedList<int> intlist; intlist.insert(0); intlist.insert(1); intlist.insert(2); intlist.insert(3); int dummy; if(intlist.first(dummy)){ cout<… Templating in PHP Programming Web Development by Bishan Can anybody help me template system in php? Re: Templating in PHP Programming Web Development by diafol I use RainTPL - simpler than Smarty. The documentation's a little sparse, but it's very lightweight. Love it. Re: Templating in PHP Programming Web Development by chrishea And there is a forum on Google Groups [URL="http://groups.google.com/group/raintpl"]http://groups.google.com/group/raintpl[/URL] Re: Templating in PHP Programming Web Development by diafol Rain TPL can be found here: [url]http://www.raintpl.com/[/url] Re: Templating in PHP Programming Web Development by chrishea Fraid not. Re: Templating in PHP Programming Web Development by diafol No? Works for me: SCREENSHOT: [url]http://www.raintpl.com/Download-127[/url] Re: Templating in PHP Programming Web Development by chrishea Works for me now too but it wasn't yesterday.