greengo Posted November 13, 2007 Share Posted November 13, 2007 Hi, can anyone tell me y it gives me this error? thanks error Notice: Undefined index: extension in c:\easyphp1-8\www\greengo\fulvio\index.php on line 12 Warning: Cannot modify header information - headers already sent by (output started at c:\easyphp1-8\www\greengo\fulvio\index.php:12) in c:\easyphp1-8\www\greengo\fulvio\index.php on line 107 codie // parse path for the extension $info = pathinfo($pathToImages.$fname); // continue only if this is a JPEG image if ( strtolower($info['extension']) == 'jpg') Link to comment https://forums.phpfreaks.com/topic/77073-pathinfo-error/ Share on other sites More sharing options...
toplay Posted November 13, 2007 Share Posted November 13, 2007 The array index of 'extension' doesn't exist in the $info array variable. Make sure the concatenated value of $pathToImages.$fname points to a file that exists. Link to comment https://forums.phpfreaks.com/topic/77073-pathinfo-error/#findComment-390338 Share on other sites More sharing options...
greengo Posted November 13, 2007 Author Share Posted November 13, 2007 It points to a file that exists. ok, the function that i'm creating should take images from a folder, make thumbnails of those photos, save 'em in another folder and create a page to show the thumbnails. Everything works, the file and the thumbnails have been created but I still have that error and the header() doesn't work. I can show you the code if you want. Link to comment https://forums.phpfreaks.com/topic/77073-pathinfo-error/#findComment-390443 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.