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.
more info about the class
See all posts Reply
$handle = new Upload(......); if ($handle->uploaded) { $handle->file_new_name_body = '_' . $handle->file_src_name_body; $handle->Process(.......); // ....... }
Example
Input
filename: sample.jpg
Output
/images/sample.jpg
/images/_thumbs/_sample.jpg
I have tried file_name_body_add but this appends after - not before original filename.
Thanks
Before calling process(), you can read $handle->file_src_name_body. Then, you set $handle->file_new_name_body
For instance, do: