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
)
)
)