Zerpex Posted March 14, 2012 Share Posted March 14, 2012 Hi, I'm having an image upload function I did create for few weeks ago - it has an variable called $newname, which contains the path and file. I'm then using the imageupload() function in another function called EditFrontPage(), which is used to 'update' some content. If I update the image, it runs the imageupload function, which is great, it resize and optimize the image, and it moves it to the folder I specified. What I then want, is within' my EditFrontPage() function, is to echo out the $newname variable from the imageUpload function. is there a way to do this? in a smart way? If my code is needed, you can take a look at it here: http://codepad.org/poKNSU5H Thank you a lot guys! Link to comment https://forums.phpfreaks.com/topic/258885-extend-variable-from-one-function-to-another/ Share on other sites More sharing options...
Muddy_Funster Posted March 14, 2012 Share Posted March 14, 2012 put return $newname; before your closing } for your function. Link to comment https://forums.phpfreaks.com/topic/258885-extend-variable-from-one-function-to-another/#findComment-1327145 Share on other sites More sharing options...
Zerpex Posted March 14, 2012 Author Share Posted March 14, 2012 Quote put return $newname; before your closing } for your function. Thank you Muddy! So awesome! Link to comment https://forums.phpfreaks.com/topic/258885-extend-variable-from-one-function-to-another/#findComment-1327157 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.