I just wanted to ask a question about the xml side of things:
I will be playing videos on a number of different pages, some will just play 1 video and others with play many. My thinking for this is that I have the player as an include (so use the same player for all sections). Then I would use something like:
PHP Code:
www.url.com/whateverPage.php?video=1
The include file will then take the $video value and run video 1, I could then also do something like:
PHP Code:
www.url.com/whateverPage.php?video=top10
The include file would then play the top10, and use something like a $jump variable to say which video in the top10 to play like this:
PHP Code:
www.url.com/whateverPage.php?video=top10&jump=3
This would then play video 3 of the top10.
Is that the best way to do this or how should I approach it?
Thanks