Kung fu for a healthy you | Credit Cards UK | Bad Credit Mortgages | Online Mall | Property for sale in Spain
XML Conversion ?? [Archive] - PCMech Forums

PDA

View Full Version : XML Conversion ??


JL6267
04-08-2004, 12:15 PM
I currently have a XML File that I am trying to upload. The place I am uploading to only accepts PHP.

Is there something that I can use to convert XML to PHP??

Any help would be appreciated.

doctorgonzo
04-08-2004, 12:18 PM
What is the content of the file you are trying to upload? What kind of site are you uploading to?

You can change the file extension to anything you want, but if the site you are uploading to expects PHP code and gets XML, it isn't going to work.

JL6267
04-08-2004, 12:20 PM
It is a puplisher XML file.
The code must be PHP changing the extension does not work.

Thanks

doctorgonzo
04-08-2004, 12:22 PM
XML is just a markup language. There is no easy way to translate it to anything else because of how it is set up. Your best bet is to go to the application that created the XML file and see if there is a way to produce PHP instead.

aym
04-08-2004, 04:16 PM
Create a file with .php extension, open it in some text editor, add the following in the beginning:
<?php
echo <<<XML_FILE_NEXT
copy XML code and paste it here
XML_FILE_NEXT;
?>


Now upload the file to the server, open it in your browser, you will get the XML document.