Technology Programming

How to Convert a String to XML in PHP

    • 1). Declare the XML header in your PHP script. In your text editor, create a string called "$header" and enter the following PHP code:

      $header = "<?xml version="1.0" encoding="ISO-8859-1"?>";

      This is the XML declaration and defines the version of XML and the encoding being used.

    • 2). Create a root node. If you had a string in PHP called "rootnode," convert it to XML by simply putting angled brackets around its value and creating an open and close tag. The root node is the main part of the "tree" structure. All other nodes are said to be "children" of this node. In your text editor, enter the following:

      $rootnode = "<root>";

      $endroot = "</root>";

      This will set variables to open and close the root node.

    • 3). Create a child node. The child node will hold information. In your text editor, enter the following code:

      $childnode = "<childnode>Information to be stored</childnode>";

      This code creates a child node called "childnode." The text between the two childnode tags is the information we are storing or sending.

    • 4). Output the information. Since XML is stored as a tree structure, first output the root node and then the children. In your editor, enter the following PHP code:

      echo $header;

      echo $rootnode;

      echo $childnode;

      echo $endroot;

SHARE
RELATED POSTS on "Technology"
Blitzerwarner: Could You Escape the Speed Cameras?
Blitzerwarner: Could You Escape the Speed Cameras?
What Makes a Perfect Web Design Company?
What Makes a Perfect Web Design Company?
Inside No-Fuss Products In Gaming Computers
Inside No-Fuss Products In Gaming Computers
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Free Music Players For Websites
Free Music Players For Websites
'See How NCP Tracks Down Fake Ration Card Holders'
'See How NCP Tracks Down Fake Ration Card Holders'
You Can Stop Panic Attacks in Just two Minutes
You Can Stop Panic Attacks in Just two Minutes
WordPress Blog to WP Site! A Journey to Online Success
WordPress Blog to WP Site! A Journey to Online Success
Videos will give your business portal an extra leverage
Videos will give your business portal an extra leverage
Excellent Ways To Make Weight Loss Work For You
Excellent Ways To Make Weight Loss Work For You
Five Notable Differences between National and International Logo Designs
Five Notable Differences between National and International Logo Designs
Who Should Your Phoenix Web Design Client Be?
Who Should Your Phoenix Web Design Client Be?
White Papers & Other Documents - including ALFLB
White Papers & Other Documents - including ALFLB
Google Analytics Tips
Google Analytics Tips
Want To Make Your Website Faster? Follow These Steps
Want To Make Your Website Faster? Follow These Steps
The Starting of Couture Apparel
The Starting of Couture Apparel
Choose Custom Website Design Services
Choose Custom Website Design Services
Choosing the Right Joomla CMS Developer
Choosing the Right Joomla CMS Developer
A Look at SQL Server Denali AlwaysOn
A Look at SQL Server Denali AlwaysOn
4 Tips to Choose the Perfect Flash Animation Course
4 Tips to Choose the Perfect Flash Animation Course

Leave Your Reply

*