Return to Menu Form Submit Image Submit Group Assembled Group Item Number

Item Number BuyObjects use the Item or SKU (stock number) to identify product options such as color, etc. This makes it possible for vendors to incorporate the option into the SKU number, for example, 345red, 345 blue, 345 green, etc., for stock control purposes, and to allow the buyer to purchase different options of the same product in the same order without confusion.


1i.       

Item Number BuyObject with Plain Form Submit.

      

It is appropriate when you

  • You want to tie your product options to the stock number or SKU.
  • You want a plain form submit button.

Source Code:

<form action="../Cart/add.php" method="get">
<!-- (C) 2001 eCatalogBuilders. All rights reserved by eCatalogBuilders. -->
<input type="hidden" name="product" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<input type="hidden" name="quantity" value="1 ">
<!--CustID value must be left blank-->
<input type="hidden" name="custID">
<input type="hidden" name="length" value="5">
<input type="hidden" name="width" value="1">
<input type="hidden" name="height" value="1">
<input type="hidden" name="weight" value="1">&nbsp;
<!--Popups for the "Item Number" BuyObjects must be named "item".-->

<select name="item" size="1">

<option value="01NoColor" selected>Color</option>
<option value="01White">White</option>
<option value="01Beige">Beige</option>
<option value="01Blue">Blue</option>
<option value="01Puce">Puce</option>
<option value="01Pink">Pink</option>
<option value="01Rose">Rose</option>
<option value="01Teal">Teal</option>
</select>&nbsp;&nbsp;&nbsp;&nbsp;

<input type="submit" value="Purchase" name="Submit">

</form>

2i.       


Item Number BuyObject with Image Submit.

      

It is appropriate when you

  • You want to tie your product options to the stock number or SKU.
  • You want an image submit button.

Source Code:

<form action="../Cart/add.php" method="get">

<input type="hidden" name="product" value="Product Name">
<!-- (C) 2001 eCatalogBuilders. All rights reserved by eCatalogBuilders. --><input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<input type="hidden" name="quantity" value="1 ">
<!--CustID value must be left blank-->
<input type="hidden" name="custID">
<input type="hidden" name="length" value="5">
<input type="hidden" name="width" value="1">
<input type="hidden" name="height" value="1">
<input type="hidden" name="weight" value="1">&nbsp;
<!--Popups for the "Item Number" BuyObjects must be named "item".-->

<select name="item" size="1">

<option value="02NoColor" selected>Color</option>
<option value="02White">White</option>
<option value="02Beige">Beige</option>
<option value="02Blue">Blue</option>
<option value="02Puce">Puce</option>
<option value="02Pink">Pink</option>
<option value="02Rose">Rose</option>
<option value="02Teal">Teal</option>

</select>&nbsp;&nbsp;&nbsp;&nbsp;<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

3i.       

Item Number BuyObject with quantity Input and Plain Form Submit.

      


It is appropriate when you

  • You want to incorporate your product options into the stock number or SKU.
  • You want the customer to be able to order any quantity of the item.
  • You want a plain form submit button.

Source Code:

<form action="../Cart/add.php" method="get">
<!-- (C) 2001 eCatalogBuilders. All rights reserved by eCatalogBuilders. -->

<input type="hidden" name="product" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<input size="2" maxlength="2" type="text" name="quantity" value="1">
<!--CustID value must be left blank--> <input type="hidden" name="custID">
<input type="hidden" name="length" value="5">
<input type="hidden" name="width" value="1">
<input type="hidden" name="height" value="1">
<input type="hidden" name="weight" value="1">&nbsp;
<!--Popups for the "Item Number" BuyObjects must be named "item".-->

<select name="item" size="1">
<option value="01NoColor" selected>Color</option>
<option value="01White">White</option>
<option value="03Beige">Beige</option>
<option value="03Blue">Blue</option>
<option value="03Puce">Puce</option>
<option value="03Pink">Pink</option>
<option value="03Rose">Rose</option>
<option value="03Teal">Teal</option>
</select>&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" value="Purchase" name="Submit">

</form>

4i.       


Item Number BuyObject with quantity Input and Image Submit.

      

It is appropriate when you

  • You want to incorporate your product options in the stock number or SKU.
  • You want the customer to be able to order any quantity of the item.
  • You want an image submit button.

Source Code:

<form action="../Cart/add.php" method="get">
<!-- (C) 2001 eCatalogBuilders. All rights reserved by eCatalogBuilders. -->

<input type="hidden" name="product" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<input size="2" maxlength="2" type="text" name="quantity" value="1">
<!--CustID value must be left blank--> <input type="hidden" name="custID">
<input type="hidden" name="length" value="5">
<input type="hidden" name="width" value="1">
<input type="hidden" name="height" value="1">
<input type="hidden" name="weight" value="1">&nbsp;
<!--Popups for the "Item Number" BuyObjects must be named "item".-->

<select name="item" size="1">
<option value="02NoColor" selected>Color</option>
<option value="02White">White</option>
<option value="04Beige">Beige</option>
<option value="04Blue">Blue</option>
<option value="04Puce">Puce</option>
<option value="04Pink">Pink</option>
<option value="04Rose">Rose</option>
<option value="04Teal">Teal</option>
</select>&nbsp;&nbsp;&nbsp;&nbsp;

<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

Return to Menu Form Submit Image Submit Group Assembled Group Item Number
Top