Code: Select all
<tr>
<td width="232" align="left"><span class=formnames><?php echo $row['descr'];?>
<select name="type" id="type" STYLE="background-color:#ffffff;border:0;font-weight:bold;color:#666666;">
<option value="Colour">Colour</option>
<option value="B&W">B & W</option>
<option value="Sepia">Sepia</option>
</select>
</span></td>
<td align="center"><span class=formnames><?php echo $row['price'];?></span></td>
<td align="center"><input name="addbox" type="button" value=" + " onclick="Item('<?php echo $row['refnum'];?>','<?php echo $row['price'];?>','<?php echo $row['descr'];?>','<?php echo $Pic_Name1;?>','add')"> <input type="button" name="subbox" value=" - " onclick="Item('<?php echo $row['refnum'];?>','<?php echo $row['price'];?>','<?php echo $row['descr'];?>','<?php echo $Pic_Name1;?>','delete')"> <span class=formnames><strong><input type="text" name="<?php echo $row['refnum'];?>" value="None" size="4" readonly STYLE="background-color:#ffffff;border:0;font-weight:bold;color:#666666;"></strong> Selected</span></td>
</tr>Code: Select all
<?php echo $row['descr'];?>any thoughts?