[PHP] Re: Functions vs html outpuit

2006-09-03 Thread Ivo F.A.C. Fokkema
On Fri, 01 Sep 2006 16:44:19 +0200, M. Sokolewicz wrote: Dave Goodchild wrote: Hi all, this may seem like a silly question, but I am creating a library of html form element generation function, for example a textarea fucntion that takes rows and cols as parameters, a function that generates a

Re: [PHP] Re: Functions vs html outpuit

2006-09-03 Thread Dave Goodchild
Thanks, that was what I needed to hear. Cheers. On 03/09/06, Ivo F.A.C. Fokkema [EMAIL PROTECTED] wrote: On Fri, 01 Sep 2006 16:44:19 +0200, M. Sokolewicz wrote: Dave Goodchild wrote: Hi all, this may seem like a silly question, but I am creating a library of html form element generation

Re: [PHP] Re: Functions vs html outpuit

2006-09-03 Thread Alex Turner
Dave Goodchild wrote: Thanks, that was what I needed to hear. Cheers. On 03/09/06, Ivo F.A.C. Fokkema [EMAIL PROTECTED] wrote: On Fri, 01 Sep 2006 16:44:19 +0200, M. Sokolewicz wrote: Dave Goodchild wrote: Hi all, this may seem like a silly question, but I am creating a library of html

Re: [PHP] Re: Functions vs html outpuit

2006-09-03 Thread Larry Garfield
On Sunday 03 September 2006 09:00, Alex Turner wrote: I would go for the optimize late philosophy. Once you have a site running, load testing it with - eg - JMeter. If a PHP page is taking a lot of the time and it could easily be converted to static HTML, do it at that point. If you code

[PHP] Re: Functions vs html outpuit

2006-09-01 Thread M. Sokolewicz
Dave Goodchild wrote: Hi all, this may seem like a silly question, but I am creating a library of html form element generation function, for example a textarea fucntion that takes rows and cols as parameters, a function that generates a day, month and year select box, etc. My question is - is it