Re: [PHP] More thoughts about PHP: Taglibs

2001-09-11 Thread Tim
A good template library (and there's quite a few out there) will take care of this issue. You can have nearly pure HTML files and pure PHP files and maintenance and readability of your projects is much improved. - Tim http://www.phptemplates.org On Tue, 2001-09-11 at 01:04, Dr. Evil wrote:

Re: [PHP] More thoughts about PHP: Taglibs

2001-09-11 Thread Michael Kimsal
Dr. Evil wrote: It seems to me that one of the problems with PHP is that you have to include code in your HTML pages. Even with the cleanest design, you end up with HTML that looks like this: html Hello, ?php showusername(); ?. Your last login was ?php showlastlogin(); ?.p /html No, you

[PHP] More thoughts about PHP: Taglibs

2001-09-10 Thread Dr. Evil
It seems to me that one of the problems with PHP is that you have to include code in your HTML pages. Even with the cleanest design, you end up with HTML that looks like this: html Hello, ?php showusername(); ?. Your last login was ?php showlastlogin(); ?.p /html This is ok, but it seems to