Re: [PHP] Can PHP Build XML Pages?

2003-07-14 Thread Ray Hunter
There are 2 ways that i make xml files with php. 1. Use domxml to make the docs. (RTM this is somewhat complex.) 2. Just create it similar to html but use xml tags. The second way is really easy. 1. Make sure to send header content type as text/xml. header( "Content-Type: text/xml" ); 2

Re: [PHP] Can PHP Build XML Pages?

2003-07-14 Thread Jeff Harris
On Jul 14, 2003, "Jeffrey Fitzgerald" claimed that: | |Looking for direction PHP and XML. I have a need to build a simple |XML doc from a PHP set of form vars. Any tips or examples are greatly |appreciated. | You mean something like \n"); print ("\n"); print (" \n"); print (" {$_POST['venuena

[PHP] Can PHP Build XML Pages?

2003-07-14 Thread Jeffrey Fitzgerald
Looking for direction PHP and XML. I have a need to build a simple XML doc from a PHP set of form vars. Any tips or examples are greatly appreciated. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php