CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   XML (http://www.codingforums.com/forumdisplay.php?f=3)
-   -   php to xml (http://www.codingforums.com/showthread.php?t=275304)

ronuk99 10-05-2012 02:10 PM

php to xml
 
Hi hope some one can help me out with this. Basically i need to transfer data from a php array to xml. The code in php works out the time of day and weekly program schedule . example at www.vikingradio.net can some one show me how i transfer this info to xml . Much appreciated with any help

ron



note hope i got this code right this time to display correctly on forum


Code:

<?php
        include("data.php");

echo "<div class='Shows'>";
echo "<div class='day'>" . date("l",strtotime($showday)) . " " . date("G:i:s",$UKTime) . "</div>";
for ($i=$Si;$i<$Ei;$i++) {
        $tShow = (object) $thisShows[$i];
        echo "<div class='Sitem'>\n";
       
        echo "<div class='indicator'>" . ($i==$showK?"ON AIR NOW:":"&nbsp;") . "</div>";echo '<img src="'.$playing.'">';
        echo "<div class='showtime'>" . str_pad($tShow->start,2,"0",STR_PAD_LEFT) . ".00-" . str_pad($tShow->end,2,"0",STR_PAD_LEFT) . ".00</div>";
        echo "<div class='descr'>" . $tShow->descr;
                if ($tShow->descr_long) echo "<div class='descr_long'>" . $tShow->descr_long . "</div>";
        echo "</div>";
        echo "<div class='sep'></div>";
        echo "</div>\n";
}
        echo "<p class='pclear'></p>\n";
echo "</div>";

?>


ronuk99 10-05-2012 02:12 PM

sorry admin cannot get inline for code. please explain how ron

Alex Vincent 10-05-2012 05:40 PM

I'm not sure I understand the question - but since you have PHP, you can write XML all day long if you want from that PHP script. You just need to come up with the right XML language, even if it means you invent that language.

About the only thing you'd need to add to your script (besides the XML language) is the following line:

Code:

header("Content-type: application/xml");


All times are GMT +1. The time now is 10:46 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.