class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
Firstly, you cannot resize images, your system doesn't have GD installed. So at best, the class will copy your images, but not resize them.
The error maybe also coming from that '\', you need to clean up your variables $target_thumb_path and $target_path (as well as not sending a path through a POST, it is very insecure!).
The class is written for Unix systems, but should be working on Windows, although I offer no support for Windows.Reply
The error maybe also coming from that '\', you need to clean up your variables $target_thumb_path and $target_path (as well as not sending a path through a POST, it is very insecure!).
The class is written for Unix systems, but should be working on Windows, although I offer no support for Windows.