Can PHP Build XML Pages?

This is a discussion on Can PHP Build XML Pages? within the PHP General forums, part of the PHP Programming Forums category; Looking for direction PHP and XML. I have a need to build a simple XML doc from a PHP set ...


Go Back   Usenet Forums > PHP Programming Forums > PHP General

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 07-14-2003
Jeffrey Fitzgerald
 
Posts: n/a
Default Can PHP Build XML Pages?


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.

Reply With Quote
  #2 (permalink)  
Old 07-14-2003
Ray Hunter
 
Posts: n/a
Default Re: [PHP] Can PHP Build XML Pages?

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. Just wrap you data with tags.

Example:

<?php
header( "Content-Type: text/xml" );

$xmlpage = '<?xml version="1.0"?>';
$xmlpage .= '<page>';

foreach( $formdata => $index as $value ) {
// $formdata is an associative array
// meaning that $index is a name rather than
// a array index number.
$xmlpage .= '<'.$index.'>'.$value.'</'.$index.'>';
}

$xmlpage .= '</page>';

echo $xmlpage;

?>

This is a very simple example...but should get you up and running.

--
BigDog


On Mon, 2003-07-14 at 10:49, Jeffrey Fitzgerald wrote:
> 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.
>


Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 05:00 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0