I'm having a really hard time trying to figure this out... I am working on a site for the radio station that I volunteer at, and we want to add now playing data to the site... The as play data is delivered to the site host via FTP as an XML file. Here is an example of what it looks like.
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<PLAYBACKSTATE>
<TRIGGER>PLAY</TRIGGER>
<CURRENTTIME>01/29/19 01:17:05</CURRENTTIME>
<PLAYLIST>012919</PLAYLIST>
<ENV></ENV>
<PLAY INDEX="0">
<CUTID>35189</CUTID>
<TITLE>WARNED YOU</TITLE>
<LENGTH> 131.20</LENGTH>
<GROUP>2010_19</GROUP>
<ARTIST>GOOD MORNING</ARTIST>
<ALBUM>SHAWCROSS</ALBUM>
</PLAY>
<REMAINING>00:02:10</REMAINING>
</PLAYBACKSTATE>
I am needing html/js to display it as <Title>
by <Artist>
from <Album>
, but I am super new to coding whatsoever and I don't understand what I need to do... I use Adobe Muse for most of what I do, but obviously, this is a little more advanced than muse.
The xml file will be located in the root file of the site files...
Thanks in advance