When adding a new item to my website I search for the picture of the item to upload to my site. After finding the file and completing the form I click add. This is supposed to take my local picture and store it to my images/rental directory. In addition, the picture will automatically be named after the item number and add thumb to the filename (ex:109_thumb.jpg).
Here is the code that I have tried after changing directories, but can't get it to work again yet.
<tr>
<td align="right" class="tdTextBold">Thumb Image:
</td>
<td><font class="errMsgB">*</font></td>
<td align="left">
<input id="fiuImage1" type="file" name="fileRentalThumbImage" /><div class="VCenter100" id="preview3" align="center"><? if ($rentalThumbImage!="" && $rentalThumbImage!=null)?><img src="../<? echo $rentalThumbImage; ?>" width="80" height="100" /></div>
<!--<div class="column">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<?
if ($rentalThumbImage!="" && $rentalThumbImage!=null)
{
?>
<div class="VCenter100" id="preview1" align="center"><? if ($rentalThumbImage!="" && $rentalThumbImage!=null)?><img src="../<? echo $rentalThumbImage; ?>" /></div>
<?
}
else
{
?>
<div class="VCenter100" id="preview1" align="center">Thumb Image</div>
<?
}
?>
</td>
<td> </td>
<td>
<div class="column">
<div class="file_button">
<input id="uploadButton" style="WIDTH: 120px" type="button" value="Browse" name="file1" /> <input class="hiddenMask" id="fiuImage1" type="file" onchange="prePicture(this.name,'preview1')" name="fileRentalThumbImage" />
</div>
<input style="WIDTH: 100px" onclick="document.frmMovie.rentalThumbImage.value='';removeImage('fiuImage1','preview1'); get('haveImage1').value='N';" type="button" value="Delete" name="remoteImage1"/>
</div>
<div style="CLEAR: both">
</div> </td>
<td> </td>
</tr>
</table>
</div>