I have a very simple xml content videolar.xml . Flash player takes these elements and plays them. I want to make change the <title> and <youtube> elements by php simplexml. I wrote a code video.php to change these elements. When i run video.php it prints like bottom. It looks like work. but if i play the player it plays led zeppelin still. Does not play whitesnake And if i open video.xml by browser i see that xml file has not changed. Still led zeppelin. So how can i update flashplayer's playlist?

Thanks is advance,

videolar.xml

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<playlist>
    <track>
        <title>led zeppelin - kashmir</title>
        <youtube>sfR_HWMzgyc</youtube>
    </track>
    <track>
        <title>pink floyd - eclipse</title>
        <youtube>BUwUKyztI10</youtube>
    </track>
</playlist>

video.php

<?php

    $completeurl = $_SERVER['DOCUMENT_ROOT'].'/ytplayer/videolar.xml';
    $xml = simplexml_load_file($completeurl);

    $xml->track[0]->title = 'Whitesnake - Is this love';
    $xml->track[0]->youtube = 'GOJk0HW_hJw';

    print_r($xml);

?>

When i run this code above it prints

(
    [track] => Array
        (
            [0] => SimpleXMLElement Object
                (
                    [title] => Whitesnake - Is this love
                    [youtube] => GOJk0HW_hJw
                )
        [1] => SimpleXMLElement Object
            (
                [title] => pink floyd - eclipse
                [youtube] => BUwUKyztI10
            )


    )
)
link|improve this question

50% accept rate
possible duplicate of A simple program to CRUD node and node values of xml file – Gordon Feb 14 at 12:54
maybe it is duplicate but i haven't solve it. and i have added $xml->asXml(); – Mutlu Feb 14 at 13:08
feedback

1 Answer

up vote 0 down vote accepted

You need to save modified xml back into file

<?php
    $completeurl = $_SERVER['DOCUMENT_ROOT'].'/ytplayer/videolar.xml';
    $xml = simplexml_load_file($completeurl);

    $xml->track[0]->title = 'Whitesnake - Is this love';
    $xml->track[0]->youtube = 'GOJk0HW_hJw';

    $xml->asXML($completeurl)
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.