What is a templating language?
I was reading somewhere that PHP is a templating language. What is exactly a templating language? What makes PHP one? What are the other templating languages? The premise behind a template language is that the language is "embedded" within some other master document. Specifically, on your average document, the total size of the document is mostly document source than template language. Consider two contrived examples: print "This is a simple document. It has three lines." print "On the second line is my name: " + firstName print "This is the third line." vs This is a simple document. It has