if (!empty($file['file_data'])) { if (get_user_os() == "MAC") { header("Content-Type: application/x-unknown\n"); header("Content-Disposition: attachment; filename=\"".$file ['file_name']."\"\n"); } elseif (get_browser_info() == "MSIE") { $disposition = (!eregi("\.zip$", $file['file_name']) && $action ! = "zip" && $action != "lightbox") ? 'attachment' : 'inline'; header("Content-Disposition: $disposition; filename=\"".$file ['file_name']."\"\n"); header("Content-Type: application/x-ms-download\n"); } elseif (get_browser_info() == "OPERA") { header("Content-Disposition: attachment; filename=\"".$file ['file_name']."\"\n"); header("Content-Type: application/octetstream\n"); } else { header("Content-Disposition: attachment; filename=\"".$file ['file_name']."\"\n"); header("Content-Type: application/octet-stream\n"); } header("Content-Length: ".$file['file_size']."\n\n"); echo $file['file_data']; } exit;
Un saludo, Danny -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php