Learjet Posted October 18, 2009 Share Posted October 18, 2009 Hi. First post here I am working on a simple upload script, and I need it to limit the allowed file type that is uploaded to only .mpr files. .mpr files are not a MIME file type so I do not know how to limit it. Any ideas on what I should do? Thanks! Link to comment https://forums.phpfreaks.com/topic/178131-solved-limiting-uploaded-file-type/ Share on other sites More sharing options...
Cory94bailly Posted October 19, 2009 Share Posted October 19, 2009 $pathinfo = pathinfo($_FILES["file"]["name"]); if (($pathinfo['extension'] == "mpr") That's basically what I'm using (It's only the relevant code..) Link to comment https://forums.phpfreaks.com/topic/178131-solved-limiting-uploaded-file-type/#findComment-939412 Share on other sites More sharing options...
sastro Posted October 19, 2009 Share Posted October 19, 2009 Try with javascript. http://javascript.internet.com/forms/upload-filter.html Link to comment https://forums.phpfreaks.com/topic/178131-solved-limiting-uploaded-file-type/#findComment-939418 Share on other sites More sharing options...
Gayner Posted October 19, 2009 Share Posted October 19, 2009 Try with javascript. http://javascript.internet.com/forms/upload-filter.html No that's client side, just people disable it and bam. Link to comment https://forums.phpfreaks.com/topic/178131-solved-limiting-uploaded-file-type/#findComment-939519 Share on other sites More sharing options...
Learjet Posted October 20, 2009 Author Share Posted October 20, 2009 $pathinfo = pathinfo($_FILES["file"]["name"]); if (($pathinfo['extension'] == "mpr") That's basically what I'm using (It's only the relevant code..) I'll try it and report back. Thanks! Link to comment https://forums.phpfreaks.com/topic/178131-solved-limiting-uploaded-file-type/#findComment-940120 Share on other sites More sharing options...
Learjet Posted October 20, 2009 Author Share Posted October 20, 2009 That worked like a charm, thanks mate! Link to comment https://forums.phpfreaks.com/topic/178131-solved-limiting-uploaded-file-type/#findComment-940128 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.