Good morning developers,
A little backround about myself, I have never had any thorough development training. I basicly tought my self 8 years ago, and i've gone up from there.
I am an owner of a radio station, and I use a bit of software called "Jazler RadioStar" and I love it, expecially for this feature.
XML uploads. currently on air / last XX tracks / next 2 or three.
I use simplexml to grab the currently playing info and it works great but I can't seem to figure out the recently played xml.
it confuses me, and i can't get it to work, here is an example of the code, hopefully someone could steer me in the correct direction.
Thanks everyone.
p.s. the next is directly related to recent, we can figure out 2 in one.
Russ.
<?xml version="1.0" encoding="utf-8"?>
<Event status="happened">
<Song title="Get Back Up">
<Artist name="T.I. Ft. Chris Brown" ID="335808">
</Artist>
<Info StartTime="16:06:46" JazlerID="128" PlayListerID="" />
</Song>
<Song title="Rainbow">
<Artist name="Jessie J" ID="335752">
</Artist>
<Info StartTime="16:11:17" JazlerID="70" PlayListerID="" />
</Song>
<Song title="We Run The Night">
<Artist name="Havana Brown" ID="335830">
</Artist>
<Info StartTime="16:15:15" JazlerID="151" PlayListerID="" />
</Song>
<Song title="Red Nation">
<Artist name="Game Ft Lil Wayne" ID="335865">
</Artist>
<Info StartTime="16:18:50" JazlerID="188" PlayListerID="" />
</Song>
<Song title="You Know Me">
<Artist name="WC ft. Ice Cube" ID="335748">
</Artist>
<Info StartTime="16:23:27" JazlerID="66" PlayListerID="" />
</Song>
<Song title="Drop">
<Artist name="Trai'D ft. T-Pain & Twista" ID="335746">
</Artist>
<Info StartTime="16:27:55" JazlerID="64" PlayListerID="" />
</Song>
<Song title="Let's Go Higher">
<Artist name="Jordan Knight ft. Colby O'Donis" ID="335860">
</Artist>
<Info StartTime="16:32:04" JazlerID="183" PlayListerID="" />
</Song>
<Song title="Don't Wanna Go Home">
<Artist name="Jason Derulo" ID="335690">
</Artist>
<Info StartTime="16:36:14" JazlerID="6" PlayListerID="" />
</Song>
<Song title="I'm Dancin">
<Artist name="T-Pain Ft. Flo Rida" ID="335801">
</Artist>
<Info StartTime="16:40:29" JazlerID="123" PlayListerID="" />
</Song>
<Song title="Come Home With Me (Remix)">
<Artist name="iamSU! ft. BC" ID="335740">
</Artist>
<Info StartTime="16:43:52" JazlerID="58" PlayListerID="" />
</Song>
</Event>
A little backround about myself, I have never had any thorough development training. I basicly tought my self 8 years ago, and i've gone up from there.
I am an owner of a radio station, and I use a bit of software called "Jazler RadioStar" and I love it, expecially for this feature.
XML uploads. currently on air / last XX tracks / next 2 or three.
I use simplexml to grab the currently playing info and it works great but I can't seem to figure out the recently played xml.
it confuses me, and i can't get it to work, here is an example of the code, hopefully someone could steer me in the correct direction.
Thanks everyone.
p.s. the next is directly related to recent, we can figure out 2 in one.
Russ.
<?xml version="1.0" encoding="utf-8"?>
<Event status="happened">
<Song title="Get Back Up">
<Artist name="T.I. Ft. Chris Brown" ID="335808">
</Artist>
<Info StartTime="16:06:46" JazlerID="128" PlayListerID="" />
</Song>
<Song title="Rainbow">
<Artist name="Jessie J" ID="335752">
</Artist>
<Info StartTime="16:11:17" JazlerID="70" PlayListerID="" />
</Song>
<Song title="We Run The Night">
<Artist name="Havana Brown" ID="335830">
</Artist>
<Info StartTime="16:15:15" JazlerID="151" PlayListerID="" />
</Song>
<Song title="Red Nation">
<Artist name="Game Ft Lil Wayne" ID="335865">
</Artist>
<Info StartTime="16:18:50" JazlerID="188" PlayListerID="" />
</Song>
<Song title="You Know Me">
<Artist name="WC ft. Ice Cube" ID="335748">
</Artist>
<Info StartTime="16:23:27" JazlerID="66" PlayListerID="" />
</Song>
<Song title="Drop">
<Artist name="Trai'D ft. T-Pain & Twista" ID="335746">
</Artist>
<Info StartTime="16:27:55" JazlerID="64" PlayListerID="" />
</Song>
<Song title="Let's Go Higher">
<Artist name="Jordan Knight ft. Colby O'Donis" ID="335860">
</Artist>
<Info StartTime="16:32:04" JazlerID="183" PlayListerID="" />
</Song>
<Song title="Don't Wanna Go Home">
<Artist name="Jason Derulo" ID="335690">
</Artist>
<Info StartTime="16:36:14" JazlerID="6" PlayListerID="" />
</Song>
<Song title="I'm Dancin">
<Artist name="T-Pain Ft. Flo Rida" ID="335801">
</Artist>
<Info StartTime="16:40:29" JazlerID="123" PlayListerID="" />
</Song>
<Song title="Come Home With Me (Remix)">
<Artist name="iamSU! ft. BC" ID="335740">
</Artist>
<Info StartTime="16:43:52" JazlerID="58" PlayListerID="" />
</Song>
</Event>