Ok what am I doing wrong, I'm passing the images in a directory to it to resize them but I can't seem to get it to work. Any help would be great... Here is my code $path_to_images = "../photos/".$_GET['type']; // path to your images function getImagesList($path) { $image = getImagesList($path_to_images); $numArray = count($image); for ($i=0;$i<$numArray;$i++) { $comma_separated = implode(",", $imageArray); $thumb = new easyphpthumbnail; $thumb -> Createthumb(array($comma_separated),'file'); echo $comma_separated; ?> |
|||

Code debugging
It's difficult to debug your code, best advise is:
At some stage you will find the error, it's probably something with paths not being correct or images that are too large!
Path save as bug
Your problem was related to a bug in version 1.0.1; it was only possible to save images in the root directory of the class. Download the latest version that incorporates this bug fix.