Re: [PHP] About PHP CMS

2007-07-08 Thread tedd
At 8:24 PM -0400 7/7/07, Nathan Nobbe wrote: kelvin, here is the example: catalog.php load('catalog.xsl'); $xsl->importStyleSheet($doc); $doc->load('catalog.xml'); echo $xsl->transformToXML($doc); ?> catalog.xml Empire Burlesque Bob Dylan USA Columbia 10.90 1985 catalog.xsl http://www.w

Re: [PHP] About PHP CMS

2007-07-07 Thread Anton C. Swartz IV
No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.476 / Virus Database: 269.10.1/889 - Release Date: 7/6/2007 8:00 PM -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] About PHP CMS

2007-07-07 Thread Nathan Nobbe
kelvin, here is the example: catalog.php load('catalog.xsl'); $xsl->importStyleSheet($doc); $doc->load('catalog.xml'); echo $xsl->transformToXML($doc); ?> catalog.xml Empire Burlesque Bob Dylan USA Columbia 10.90 1985 catalog.xsl http://www.w3.org/1999/XSL/Transform";> My CD Collecti

Re: [PHP] About PHP CMS

2007-07-07 Thread Nathan Nobbe
to keep html separate from php you can also look at XSLT. ive heard good and bad things about smarty. -nathan On 7/6/07, Davi <[EMAIL PROTECTED]> wrote: Em Sexta 06 Julho 2007 21:24, Kelvin Park escreveu: > Is it possible to have PHP code completely separate from the HTML page that > needs to

Re: [PHP] About PHP CMS

2007-07-06 Thread Davi
Em Sexta 06 Julho 2007 21:24, Kelvin Park escreveu: > Is it possible to have PHP code completely separate from the HTML page that > needs to be completely dynamic? (That's how ASP.NET sort of works I think). > If this is possible, HTML CODE, PHP CODE, AND THE CSS CODE can be > completely separate,