<p> </p>
<form action="processCategory.php?action=modify&catId=<{$catId}>" method="post" enctype="multipart/form-data" name="frmCategory" id="frmCategory">
<table width="100%" border="0" align="center" cellpadding="5" cellspacing="1" class="entryTable">
<tr>
<td width="150" class="label">Category Name</td>
<td class="content"><input name="txtName" type="text" class="box" id="txtName" value="<{$cat_name}>" size="30" maxlength="50"></td>
</tr>
<tr>
<td width="150" class="label">Category Title</td>
<td class="content"><input name="Title" type="text" class="box" id="Title" value="<{$cat_title}>" size="70" maxlength="200"></td>
</tr>
<tr>
<td width="150" class="label">Description</td>
<td class="content"> <textarea name="mtxDescription" cols="50" rows="4" class="box" id="mtxDescription"><{$cat_description}></textarea></td>
</tr>
<tr>
<td width="150" class="label">Image</td>
<td class="content">
<input name="fleImage" type="file" id="fleImage" class="box">
<{if $haveimage}>
<br>
<img src="<{$cat_image}>"> <a href="javascript:deleteImage(<{$catId}>);">Delete
Image</a>
<{/if}>
</td>
</tr>
</table>
<p align="center">
<input name="btnModify" type="submit" id="btnModify" value="Save Modification" onClick="checkCategoryForm();" class="box">
<input name="btnCancel" type="button" id="btnCancel" value="Cancel" onClick="window.location.href='index.php';" class="box">
</p>
</form>