Re: [PHP] template engine/template class

2007-03-05 Thread Alberto Ferrer
http://www.eframework.org/index.php has one, better than Smarty :P Check docs http://www.eframework.org/doc/ http://www.eframework.org/template-syntax/ 2007/3/5, Ross <[EMAIL PROTECTED]>: I am looking for a template class that will take a basic 2 column template I have made and let the user

[PHP] template engine/template class

2007-03-05 Thread Ross
I am looking for a template class that will take a basic 2 column template I have made and let the user -change the page title -add an header image - enter the main body text -save the file to a folder of their choice Is there already a class out there that does this or similar. Smarty is far t

Re: [PHP] Template engine that doesn't rely on PEAR?

2006-01-15 Thread Curt Zirzow
On Mon, Jan 16, 2006 at 03:33:08AM +1000, Murray @ PlanetThoughtful wrote: > Hi All, > > Can anyone recommend a PHP 4.x compliant template engine that doesn't > depend on PEAR? php Curt. -- cat .signature: No such file or directory -- PHP General Mailing List (http://www.php.net/) To unsubsc

RE: [PHP] Template engine that doesn't rely on PEAR?

2006-01-15 Thread Erin Fortenberry
> -Original Message- > Cc: php-general@lists.php.net > Subject: Re: [PHP] Template engine that doesn't rely on PEAR? > > Maybe Smarty? Don't know if it depends on PEAR. > > http://smarty.php.net I have used tiny but strong before... It is a lighter wei

Re: [PHP] Template engine that doesn't rely on PEAR?

2006-01-15 Thread Jesús Fernández
Maybe Smarty? Don't know if it depends on PEAR. http://smarty.php.net -- Esú - http://esu.proyectoanonimo.com http://www.proyectoanonimo.com

[PHP] Template engine that doesn't rely on PEAR?

2006-01-15 Thread Murray @ PlanetThoughtful
Hi All, Can anyone recommend a PHP 4.x compliant template engine that doesn't depend on PEAR? I can't get PEAR to operate properly on my remote host, so I'm looking for something that can be dropped in to an existing site and is complete in and of itself. Any recommendations that suit the

[PHP] Template Engine with Event Handlers

2005-07-09 Thread Rory Browne
Hi Anyone know if any of the current PHP templating solutions implement event handling? I mean something similar to ASP.NET's onClick events, etc. I was thinking maybe a js-triggered ajax system, which allowed php to access some of the JS Objects? I was thinking about doing something like this, a

Re: [PHP] automatic PHP Template engine

2005-05-01 Thread Evert | Rooftop Solutions
Richard Lynch wrote: On Sun, May 1, 2005 12:54 pm, Evert | Rooftop Solutions said: I'm working on a template engine, and I want my template engine to be automaticly started when a .stl file is called from the browser. I know this can be done with mod_rewrite, but I really need a platform-indepen

Re: [PHP] automatic PHP Template engine

2005-05-01 Thread Richard Lynch
On Sun, May 1, 2005 12:54 pm, Evert | Rooftop Solutions said: > I'm working on a template engine, and I want my template engine to be > automaticly started when a .stl file is called from the browser. > I know this can be done with mod_rewrite, but I really need a > platform-independant solution. H

[PHP] automatic PHP Template engine

2005-05-01 Thread Evert | Rooftop Solutions
Hi, I'm working on a template engine, and I want my template engine to be automaticly started when a .stl file is called from the browser. I know this can be done with mod_rewrite, but I really need a platform-independant solution. Has anybody some ideas on how to make it work everywhere (prefer

RE: [PHP] Template Engine

2004-05-15 Thread electroteque
was a templating standard, like a php equivalant to struts hehe. > -Original Message- > From: Tom Rogers [mailto:[EMAIL PROTECTED] > Sent: Saturday, May 15, 2004 6:10 PM > To: George Lantz > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] Template Engine > > > Hi,

Re: [PHP] Template Engine

2004-05-15 Thread Tom Rogers
Hi, Saturday, May 15, 2004, 6:13:25 AM, you wrote: GL> I was just wondering if anyone had any good advice or tutorials on GL> building a simple template engine system. I am woking on a small project GL> that I would like to distribute, and I would of course like to separate GL> logic from html. I

Re: [PHP] Template Engine

2004-05-14 Thread Robert Cummings
On Fri, 2004-05-14 at 16:13, George Lantz wrote: > I was just wondering if anyone had any good advice or tutorials on > building a simple template engine system. I am woking on a small project > that I would like to distribute, and I would of course like to separate > logic from html. I really just

[PHP] Template Engine

2004-05-14 Thread George Lantz
I was just wondering if anyone had any good advice or tutorials on building a simple template engine system. I am woking on a small project that I would like to distribute, and I would of course like to separate logic from html. I really just want to know the basics without caching. I am familiar w

[PHP] template engine

2003-06-19 Thread Niels Uhlendorf
Hi, Since I don't want to continue with Smarty I started with an own (little) template engine. In this first try it should only replace {for loops=INTEGER} ... {/for} through a trivial FOR-loop which runs INTEGER times. This mission was sent to the function "loop" in this file: http://www.offuc

[PHP] Template engine extension

2003-03-06 Thread Niels Andersen
I have created a simple template engine extension. It is published at http://zhat.dk/template/ It is very simple to install and use, and a PHP alternative (an include file) is also provided. No documentation available yet (sorry!!!), so have a look at the example scripts. -- PHP General Mailin

Re: [PHP] Template Engine

2001-06-20 Thread infoz
Which reminds me, while the mailing list was down, I released the Dreamtime template engine for people to play with. More components of the system to come later this week. http://www.phptemplates.org - Tim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTE

[PHP] Template Engine

2001-06-20 Thread TunkeyMicket
Since so many of you are asking for help w/ a template engine of some sort I have included the one I use for my mail program.  I have not tested it with large amounts of text, but it is able to handle some very large strings.  It has its own documentation, and if anyone needs any help settin