This topic is locked
[SOLVED]

 Showing XML Feed in PHPRunner

5/24/2010 4:41:01 PM
PHPRunner General questions
G
greener author

Hi,

The current application I created in PHPRunner consists of about 40 different fields. I am considering creating a Joomla application that uses about 3 of those fields as data for the joomla application. So what that means is that those 3 fields would be now created and "managed" in a different Joomla "owned" mysql table (but in the same DB) and in a different xml based format. The following XML code was pulled out of a single field in the joomla table and is an example of how the new code is now formatted that represents all 4 fields. Would it be possible to somehow edit and display these 3 fields in my phprunner app? AS I'm not a programmer I'll find someone to write a php based parser and/or display script (if complicated). I just need to know if this is possible and what "land mines" if any I might have to watch out for <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=14501&image=1&table=forumtopics' class='bbc_emoticon' alt=':)' />
thanks!
So in the code below the 3 fields represent: 1. an image uploaded 2. "Director" 3. "synopsis"

<?xml version="1.0" encoding="utf-8"?>

<elements><image identifier="61b13de3-3724-405c-aa9c-6a6a2f7a4ddf">

<file><![CDATA[images/stories/el_nano169x243.jpg]]></file>

<width><![CDATA[169]]></width>

<height><![CDATA[243]]></height>

</image><text identifier="2241d256-ec18-429a-8a18-db46711183d8">

<value><![CDATA[1953]]></value>

</text><text identifier="c4bfdd16-297f-4f65-a43d-56a98f95d951">

<value><![CDATA[Man meets woman and falls in love]]></value>

</text><text identifier="34af41b1-fd61-42cf-8922-94ba402deeea">

<value><![CDATA[Steven Spielberg the director]]></value>

</text>

</elements>

N
nix386 5/25/2010

Maybe using a PHP webservice toolkit like nusoap may be of some use here?

G
greener author 5/26/2010



Maybe using a PHP webservice toolkit like nusoap may be of some use here?



thank you very much. rg