Go Back   Cyber Tech Help Support Forums > Software > Web Development & Graphic Design

Notices

Web Development & Graphic Design Problem Solving for Graphic Design, PHP, ASP, Perl, MySQL, SQL, XML, HTML issues

Reply
 
Topic Tools
  #1  
Old May 25th, 2009, 05:54 AM
Bradley7 Bradley7 is offline
Member
 
Join Date: Feb 2007
O/S: MacOS
Location: Addelaide Australia
Posts: 50
Uploading a file using a form

Hi

I know you have covered this 2 million times but I can't understand.

I have successful uploaded individual fields (text fields) to email using Formmail but I can't upload a file. Been working on this for weeks.

Can someone help. Using formMail scrip

Brad
Reply With Quote
  #2  
Old June 14th, 2009, 01:46 PM
Symbyo RD Symbyo RD is offline
New Member
 
Join Date: Oct 2008
Posts: 1
You need set the <form> method="post" in order to send the user's file to your PHP script, and then have your JavaScript do form.submit() if the user's input validates. You can't do it with window.location pointing to the script's URL with a query string. The script will then need to receive the information in the $_POST vars and use the PHP function move_uploaded_file() to retrieve the file.

and set enctype="multipart/form-data" in your form element. And use $_fileS as you have done previously. It does not matter if you are submitting the form (or creating the div/form) using JavaScript or not. But... when you are setting window.location.href="..." you are NOT actually submitting the form.
Reply With Quote
  #3  
Old July 22nd, 2009, 10:00 AM
WayneWhitty's Avatar
WayneWhitty WayneWhitty is offline
Member
 
Join Date: Dec 2006
Posts: 58
Your form tag should look something like this: notice the enctype.

Quote:
<form action="" method="post" enctype="multipart/form-data" >
Reply With Quote
Reply

Bookmarks

Topic Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Topics
Topic Topic Starter Forum Replies Last Post
Uploading a whole file with photos perplexed Applications 4 November 27th, 2008 02:54 AM
Outlook - Form cache file not valid. Outlook cannot start. catbiz Applications 1 March 29th, 2006 10:00 PM
Personal Web site uploading song file saskatoon The Anything Else Board 1 June 17th, 2003 02:03 AM


All times are GMT +1. The time now is 12:52 AM.