PLEASE HELP!
I have the following form with the goal of being able to upload up to 3 files to an FTP folder and emailing me and the sender about the upload. It's breaking and can't figue out why. PLEASE HELP! 😕
//!!<form action="scripts/upload_form.php" method="post" ENCTYPE="multipart/form-data" target="_self">
<table width="307" border="0" cellpadding="0" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td width="99" class="contact_style">Full name: </td>
<td width="205"><input name="Full_Name" style="font-size:9px; font:Helvetica, Arial; height:14px;" id="Full_Name" type="text" size="26" maxlength="30"></td>
</tr>
<tr>
<td><span class="contact_style">File Name:</span></td>
<td><input name="Files_Name" style="font-size:9px; font:Helvetica, Arial; height:14px;" id="Files_Name" type="text" size="26" maxlength="30"></td>
</tr>
<tr>
<td class="contact_style">Email:</td>
<td><input name="Email" style="font-size:9px; font:Helvetica, Arial; height:14px;" id="Email" type="text" size="26" maxlength="30"></td>
</tr>
<tr>
<td class="contact_style">Telephone:</td>
<td><input name="Telephone" style="font-size:9px; font:Helvetica, Arial; height:14px;" id="Telephone" type="text" size="26" maxlength="30">
<img src="images/h_divider.gif" width="74" height="4"></td>
</tr>
<tr>
<td colspan="2" valign="middle"><span class="style3">Use if files are 7mb + :</span> <br> <input name="Submitted_file" type="file" class="buttons" id="Submitted_file" style="font-size:10px; font:Helvetica, Arial; height:18px;" size="40">
<br><input name="Submitted_file2" type="file" class="buttons" id="Submitted_file2" style="font-size:10px; font:Helvetica, Arial; height:18px;" size="40">
<input name="Submitted_file3" type="file" class="buttons" id="Submitted_file3" style="font-size:10px; font:Helvetica, Arial; height:18px;" size="40">
<br><input type="submit" class="buttons" style="font-size:11px; font:Helvetica, Arial; height:18px;" onClick="MM_openBrWindow('upload_content_timer.php','Uploading','width=320,height=40')" value="upload"></td>
</tr>
</table>
</form>//