I just created this for you… its basic but should do the job… after this you can look at SQL and retrieving from database, but should be simple enough. Put it in one file called index.php or something along those lines.
[php]
<?php $season = mysql_real_escape_string($_GET['season'] - 1); $episode = mysql_real_escape_string($_GET['episode'] - 1); $url = array( array( 'URL FOR VIDEO 1 SEASON 1', 'URL FOR VIDEO 2 SEASON 1', 'URL FOR VIDEO 3 SEASON 1' ), array( 'URL FOR VIDEO 1 SEASON 2', 'URL FOR VIDEO 2 SEASON 2', 'URL FOR VIDEO 3 SEASON 2' ) ); echo ' '; ?>[/php]