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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.