COLOR & SIZE OPTIONS

additem.exe:

If you sell items that have size and/or colors options, you can add the following tag(s):

You would add this tag only once. <input type="hidden" name="ADJID" value="True">.

For example you may want to use a select box:

<select name="Size">
<option value="S">Small</option>
<option value="M">Med</option>
</select>
<select name="Color">
<option value="Spot">Spotted</option>
<option value="Black">All Black</option>
</select>

If you wish to fill in the colors and size values with a database search you would specify an "Inline" database search.

For more information on Inline database search see the database docs. Here is one example:

**dbsearch.exe?mdb=yourmdb,tbl=Colors,template=\color.txt,DB_ColorID=##ItemColor##,DBCOMP=ABS**

The Template to the inline search would be simular to:
Color: <select name="color">
#*<OPTION>##Color##*#
</select>

fillcart.exe:

If you sell items that have size and/or colors options, you can add the following tag(s):

You would add this tag only once. <input type="hidden" name="ADJID" value="True">.

For example you may want to use a select box:

<select name="Size_01">
<option value="S">Small</option>
<option value="M">Med</option>
</select>
<select name="Color_01">
<option value="Spot">Spotted</option>
<option value="Black">All Black</option>
</select>

If you wish to fill in the size value with a database search you would add an additional #* and *# around the option values.

<select name="Size_01">
#* <option value="##Size##">##Size##</option>
*#