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') Quote Link to comment 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. Quote Link to comment 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. Quote Link to comment 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.