Sure. Here's the code I used:
PHP Code:
<?php

if(!empty($file_id) {
    
    switch (
$file_id) {
    case 
0:
       echo 
"Please specify a file ID";
    case 
1:
       
header("Location: ./data/download1.zip");
       break;
    case 
2:
       
header("Location: ./data/download2.zip");
       break;
    default:
       echo 
"No file found with that id";
    }
    
    exit();
    
} else {
    echo 
"Please specify a file ID";
}

?&
gt
Thanks,

-jk