Jump to content

attach file code


pixeltrace

Recommended Posts

i almost forgot.

this is just for the form right?
how about on the submit page?

what are the codes that i need to place there?
example, if its a jpeg file and it needs to go to a specific folder in the server
and have it renamed automatically. for instance the filename is picture1.jpg
and once it was submitted i want it to be renamed to 001.jpg
how should i be able to do that in the submitpage?

thanks!
Link to comment
https://forums.phpfreaks.com/topic/28530-attach-file-code/#findComment-130553
Share on other sites

[code]
<?
$target_folder = "gallery";
$filename = basename($_FILES['newfile']['name']);
$target_path = "$target_folder/$filename";

$filetype = pathinfo("$filename");
$filetype = $filetype['extension'];

if(($filetype=="jpg")||($filetype=="jpeg")||($filetype=="gif")||($filetype=="png")||($filetype=="bmp")||($filetype=="tiff")||($filetype=="tga")||($filetype=="pub")){
if(move_uploaded_file($_FILES['newfile']['tmp_name'], $target_path)) echo "The file $filename has been uploaded";
}
?>
[/code]

old script of mine... but i'm sure you can customize...
Link to comment
https://forums.phpfreaks.com/topic/28530-attach-file-code/#findComment-130557
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.