<form method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>" enctype="multipart/form-data">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<th colspan="2" bgcolor="#c89b00" height="35">
<span class="list_heading"><?php echo $info ?></span>
</th>
</tr>
<tr>
<th colspan="2" bgcolor="#ffcc00" height="30">
<p align="center">New Product info:</p>
</th>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Choose a category for new product:
</td>
<td bgcolor="#eeeeee" height="40">
<?php echo $category_select ?>
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Product Name:
</td>
<td bgcolor="#eeeeee" height="40">
<input type="text" name="product_name" size="35" maxlength="35">
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Upload Picture:
</td>
<td bgcolor="#eeeeee" height="40">
<input type="hidden" name="MAX_FILE_SIZE" value="1000000">
<input type="hidden" name="new_picture" value="upload">
<input type="file" name="picture">
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Quantity:
</td>
<td bgcolor="#eeeeee" height="40">
<input type="text" name="qty_instock" value="1" size="8" maxlength="8">
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Price:
</td>
<td bgcolor="#eeeeee" height="40">
<input type="text" name="price" value="0.00" size="19" maxlength="19">
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Shipping:
</td>
<td bgcolor="#eeeeee" height="40">
<input type="text" name="shipping" value="0.00" size="19" maxlength="19">
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Handling:
</td>
<td bgcolor="#eeeeee" height="40">
<input type="text" name="handling" value="0.00" size="19" maxlength="19">
</td>
</tr>
<tr>
<th colspan="2" bgcolor="#ffcc00" height="30">
<p align="center">Meta Data:</p>
</th>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Web Title:
</td>
<td bgcolor="#eeeeee" height="40">
<input type="text" name="title" size="55" maxlength="55">
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="135">
Description: (No HTML)
</td>
<td bgcolor="#eeeeee" height="135">
<textarea rows="5" cols="55" name="description"></textarea>
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="135">
Key Words:
</td>
<td bgcolor="#eeeeee" height="135">
<textarea rows="5" cols="55" name="keywords"></textarea>
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Display:
</td>
<td bgcolor="#eeeeee" height="40">
<?php echo $display_select ?>
</td>
</tr>
<tr>
<td align="right" bgcolor="#eeeeee" height="40">
Priority Number:
</td>
<td bgcolor="#eeeeee" height="40">
<input type="text" name="priority" value="0" size="5" maxlength="5">
</td>
</tr>
<tr>
<th colspan="2" bgcolor="#ffcc00" height="30">
<p align="center">Optionally, you can add more pictures in the next step:</p>
</th>
</tr>
<tr>
<td colspan="2" bgcolor="#ececec">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" valign="middle" width="50%" height="75">
<p id="border"><input type="submit" id="addinput" name="task" value="Save"></p>
</td>
<td align="center" valign="middle" width="50%" height="75">
<p id="border"><input type="submit" id="deleteinput" name="quit" value="Quit"></p>
</td>
</tr>
<tr>
<td align="center" valign="middle" width="50%" height="25">
Add Category
</td>
<td align="center" valign="middle" width="50%" height="25">
Cancel
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>