Re: [PHP] Separating HTML code from PHP code

2007-03-11 Thread Paul Novitski
At 3/10/2007 11:47 AM, Don Don wrote: Hi all, i am building a system using php and am trying to separate the html codes from the php codes (i.e. placing them in separate files), I am from the java struts/spring background and seem to be finding it difficult doing that at the moment with php.

Re: [PHP] Separating HTML code from PHP code

2007-03-11 Thread Michael Weaver
Hi Don, I understand what you mean by separating out the code from the view or display. I ran into this issue with PHP several years ago and ended up writing a templating engine to allow for complete separation of the code from the display. The DynaCore System has been in development for

[PHP] Separating HTML code from PHP code

2007-03-10 Thread Don Don
Hi all, i am building a system using php and am trying to separate the html codes from the php codes (i.e. placing them in separate files), I am from the java struts/spring background and seem to be finding it difficult doing that at the moment with php. I've got a registration form in

Re: [PHP] Separating HTML code from PHP code

2007-03-10 Thread Robert Cummings
On Sat, 2007-03-10 at 11:47 -0800, Don Don wrote: Hi all, i am building a system using php and am trying to separate the html codes from the php codes (i.e. placing them in separate files), I am from the java struts/spring background and seem to be finding it difficult doing that at the moment

Re: [PHP] Separating HTML code from PHP code

2007-03-10 Thread Martin Marques
Don Don escribió: Hi all, i am building a system using php and am trying to separate the html codes from the php codes (i.e. placing them in separate files), I am from the java struts/spring background and seem to be finding it difficult doing that at the moment with php. I've got a