So do I place the php code in a seperate file? Do I point my form action to this php file? Right now here is my form:
<form action="http://formmail.servage.net/" method="POST" enctype="multipart/form-data" name="Application" >
<input type=hidden name="id" value="8460">
<input type=hidden name="subject" value="FORM SUBJECT">
<table bgcolor="#a04d2d" cellpadding="7" width="750">
<tr>
<td> <div align="right"> <font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" color="#FFFFFF"><b>Attach Photo 1:</b></font></div></td>
<td><font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">
<input accept="image/gif,image/jpeg,image/png" style="width:240" name="picture1" type="file" class="inputfield">
</font></td>
</tr>
<tr>
<td> <div align="right"> <font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" color="#FFFFFF"><b>Attach Photo 2:</b></font></div></td>
<td><font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">
<input accept="image/gif,image/jpeg,image/png" style="width:240" name="picture2" type="file" class="inputfield">
</font></td>
</tr>
<tr>
<td align="right"><input name="submit" type="submit" value="Submit">
<input name="reset" type="reset">
<br> <p><br>
</p>
<p></p></td>
</tr>
</table>
</form>
and here is my output:
Below is the result of your feedback form. It was submitted by
Unknown Stranger (nobody@servage.net) on January 29th, 2007
submit: Submit
email:
nobody@servage.net
realname: Unknown Stranger
if I remove the enctype="multipart/form-data"
I at least get a return of an image pointing to a local file:
Below is the result of your feedback form. It was submitted by
Unknown Stranger (nobody@servage.net) on January 29th, 2007
picture1: C:\\Documents and Settings\\Al\\My Documents\\Invoices\\inv22.jpg
picture2: C:\\Documents and Settings\\Al\\My Documents\\Invoices\\inv23.jpg
submit: Submit
email:
nobody@servage.net
realname: Unknown Stranger
I want people to upload files with their forms. Is this a server issue as the form is being pointed to a page controlled by them through the form action attribute?