ldb358 Posted June 13, 2009 Share Posted June 13, 2009 i made a script to upload images to a site and for the most part every image worked but ones where the name contained (, ) , or _ whats up with this i tried to fix it with this: $nameFill3 = str_replace("_","",$upload['name']); $nameFill2 = str_replace("(","",$upload['name']); $nameFill = str_replace(")","",$upload['name']); Quote Link to comment https://forums.phpfreaks.com/topic/162069-pictures-uploading-error/ Share on other sites More sharing options...
jxrd Posted June 13, 2009 Share Posted June 13, 2009 Cool. Quote Link to comment https://forums.phpfreaks.com/topic/162069-pictures-uploading-error/#findComment-855166 Share on other sites More sharing options...
ldb358 Posted June 13, 2009 Author Share Posted June 13, 2009 it still doesnt work and the underscores are still there Quote Link to comment https://forums.phpfreaks.com/topic/162069-pictures-uploading-error/#findComment-855176 Share on other sites More sharing options...
jxrd Posted June 13, 2009 Share Posted June 13, 2009 Could you post your whole script? Quote Link to comment https://forums.phpfreaks.com/topic/162069-pictures-uploading-error/#findComment-855178 Share on other sites More sharing options...
Alex Posted June 13, 2009 Share Posted June 13, 2009 You should be setting the str_replace() equal to the variable that you're going to be using later on. So not 3 different variables. In your case you could just use an array. $findArr = array('_', '(', ')'); $fileName = str_replace($findArr, '', $upload['name']); You'd then continue to use $fileName (not $upload['name']) to do whatever you want to do with it. Quote Link to comment https://forums.phpfreaks.com/topic/162069-pictures-uploading-error/#findComment-855180 Share on other sites More sharing options...
ldb358 Posted June 13, 2009 Author Share Posted June 13, 2009 thank you very much Quote Link to comment https://forums.phpfreaks.com/topic/162069-pictures-uploading-error/#findComment-855183 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.