I want to play random videos from 2 lists alternately on my webpage. Can anyone help?

Hi
I want to play videos randomly from 2 lists alternately on my webpage. The videos are placed on other websites than my webpage.

Also I want to add my logo to the player.

eg. play a video in random from first list then play video in random from second list. Then again play a video in random from first list and this sequence must go on.

Can anyone help?

Thanking you in advance

Awaiting I remain

Regards

First you insert your video link to a mysql database table. Then just run the following query. You will get the random video link.

SELECT column FROM table
ORDER BY RAND()

thanks, its works for me.