| How to check if a .swf exists error checking |
StoutFiles

msg:3934767 | 12:37 am on Jun 17, 2009 (gmt 0) | I pass a GET variable to call my swf's with php. If a .swf doesn't exist, is there anyway I can know this and redirect to an error page or display an error message instead of a blank box where a flash file should be?
|
rocknbil

msg:3934803 | 1:46 am on Jun 17, 2009 (gmt 0) | var $flash = '/full/path/to/swf/dir/' . $_GET['f']; // Cleanse! if (is_file($flash)) { // display it } else { // alt content } Something like that?
|
StoutFiles

msg:3934837 | 3:17 am on Jun 17, 2009 (gmt 0) | That worked perfectly! Thank you.
|
|
|