Jump to content

pathinfo() error


greengo

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.