The link to your page should look something like this:
mysite.com/MY_FLASH_MOVIE_PAGE.php?name=whatever&quality=high
Then in PHP, use this code:
$name = $GET['name'];
$quality = $GET['quality'];
$name and $quality should then hold the values your user requested. It's probably a good idea to make the names quite short.