pixeltrace Posted November 26, 2006 Share Posted November 26, 2006 guys,i have an admin page and may need to have the attach file field and buttonwhat is the code for this?thanks! Quote Link to comment Share on other sites More sharing options...
taith Posted November 26, 2006 Share Posted November 26, 2006 [code]<INPUT TYPE=file NAME="html_file">[/code] Quote Link to comment Share on other sites More sharing options...
pixeltrace Posted November 26, 2006 Author Share Posted November 26, 2006 thanks! Quote Link to comment Share on other sites More sharing options...
pixeltrace Posted November 26, 2006 Author Share Posted November 26, 2006 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 serverand have it renamed automatically. for instance the filename is picture1.jpgand once it was submitted i want it to be renamed to 001.jpghow should i be able to do that in the submitpage?thanks! Quote Link to comment Share on other sites More sharing options...
taith Posted November 26, 2006 Share Posted November 26, 2006 [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... Quote Link to comment Share on other sites More sharing options...
pixeltrace Posted November 26, 2006 Author Share Posted November 26, 2006 thanks!i'll test this now. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.