Examples Menu Form Submit Image Submit Group Assembled Group Item Number
These BuyObjects for the CatalogIntegrator Cart are presented here in Layout Form that can be selected, dragged and dropped into your pages, if your HTML editor supports it, and also as source code that you can copy and paste into your HTML pages.

1i.       

Plain Image Submit.

This is the simplest BuyObject with Image Submit

 

It is appropriate when you have an item that

  • does not come in options and
  • you do not intend people to order in quantity.

Source Code:

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

<input type="hidden" name="item" value="001i">
<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;
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

2i.     

Image Submit with quantity Input.

 

This BuyObject is appropriate when you have an item

  • that does not come in options and
  • you wish people to be able to order in quantity.

Source Code:

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

<input type="hidden" name="item" value="002i">
<input type="hidden" name="product" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;
<input size="2" maxlength="2" type="text" name="quantity" value="1">
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

3i.       

Image Submit with Radio Buttons.

   Text Here    Text Here  Text Here    Text Here 

This BuyObject is appropriate when you have an item:

  • that comes in several options and
  • you wish people to be able to order one of them.

You can add more radio buttons or delete some.

Source Code:

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

<input type="hidden" name="item" value="003i">
<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;
<input type="radio" value="Value1" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="Value2" name="product[]">&nbsp;Text Here&nbsp;
<input type="radio" value="Value3" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="Value4" name="product[]">&nbsp;Text Here&nbsp;
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

 4i.       

Image Submit with Radio Buttons and quantity Input

    Text Here    Text Here  Text Here    Text Here 

This BuyObject is appropriate when you have an item

  • that comes in several options and
  • you wish people to be able to select one of them
  • in any quantity.

You can add more radio buttons or delete some. There must be at least two radio buttons in a BuyObject.

Source Code:

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

<input type="hidden" name="item" value="004i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;
<input size="2" maxlength="2" type="text" name="quantity" value="1">&nbsp;
<input type="radio" value="Value1" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="Value2" name="product[]">&nbsp;Text Here&nbsp;
<input type="radio" value="Value3" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="Value4" name="product[]">&nbsp;Text Here&nbsp;
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

 5i.       

Image Submit with Checkboxes.

   Text HereText HereText HereText Here 

This BuyObject is appropriate when you have an item

  • that comes in several options and
  • you wish people to be able to select more than one of the options.

You can add more checkboxes or delete some.

Source Code:

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

<input type="hidden" name="item" value="005i">
<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; &nbsp;
<input type="checkbox" value="ValueA" name="product[]">Text Here
<input type="checkbox" value="ValueB" name="product[]">Text Here
<input type="checkbox" value="ValueC" name="product[]">Text Here
<input type="checkbox" value="ValueD" name="product[]">Text Here&nbsp;
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

6i.        

Image Submitt with Checkboxes and quantity Input.

 

  Text HereText HereText HereText Here     

This BuyObject is appropriate when you have an item

  • that comes in several options and
  • you wish people to be able to select more than one of the options and
  • order any quantity.

You can add more checkboxes or delete some.

Source Code:

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

<input type="hidden" name="item" value="006">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;<p> &nbsp;
<input size="2" maxlength="2" type="text" name="quantity" value="1">&nbsp;
<input type="checkbox" value="Value1" name="product[]">Text Here
<input type="checkbox" value="Value2" name="product[]">Text Here
<input type="checkbox" value="Value3" name="product[]">Text Here
<input type="checkbox" value="Value4" name="product[]">Text Here&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" value="Purchase" name="Submit"></p>

</form>

7i.        

Image Submit with Radio Buttons and Checkboxes.

   Text Here    Text Here  Text Here    Text Here 
 Text HereText HereText HereText Here 

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type,
  • and more than one of the options of that type.

You can add and/or delete checkboxes and radio buttons but there must be at least two radio buttons.

Source Code:

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

<input type="hidden" name="item" value="007i">
<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;
<input type="radio" value="ValueA" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueB" name="product[]">&nbsp;Text Here&nbsp;
<input type="radio" value="ValueC" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueD" name="product[]">&nbsp;Text Here&nbsp;<br> &nbsp;
<input type="checkbox" value="Value1" name="product[]">Text Here
<input type="checkbox" value="Value2" name="product[]">Text Here
<input type="checkbox" value="Value3" name="product[]">Text Here
<input type="checkbox" value="Value4" name="product[]">Text Here&nbsp;
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

8i.        

Image Submit with Radio Buttons, Checkboxes and quantity.

   Text Here    Text Here  Text Here    Text Here 
 Text HereText HereText HereText Here 

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type,
  • but more than one of the options of that type,
  • and order any quantity.

Source Code:

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

<input type="hidden" name="item" value="008i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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">
<input size="2" maxlength="2" type="text" name="quantity" value="1">&nbsp;
<input type="radio" value="ValueA" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueB" name="product[]">&nbsp;Text Here&nbsp;
<input type="radio" value="ValueC" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueD" name="product[]">&nbsp;Text Here&nbsp;<br> &nbsp;
<input type="checkbox" value="Value1" name="product[]">Text Here
<input type="checkbox" value="Value2" name="product[]">Text Here
<input type="checkbox" value="Value3" name="product[]">Text Here
<input type="checkbox" value="Value4" name="product[]">Text Here&nbsp;
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

9i.        

Image Submit with Popup Menus.

       

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type of each option.

You can add and/or delete popup menus.

Source Code:

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

<input type="hidden" name="item" value="0091">
<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 must be named product so that the information will land in the product description field in the cart.-->

<select name="product[]" size="1">

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

<select name="product[]" size="1">

<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>

</select>&nbsp;&nbsp;

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

</form>

10i.        

Image Submit with Popup Menus and quantity Input.

         

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type of each option
  • and order in any quantity.

You can add and/or delete popup menus.

Source Code:

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

<input type="hidden" name="item" value="010i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01"><input type="hidden" name="nontax" value="no">
<!--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;
<input size="2" maxlength="2" type="text" name="quantity" value="1">&nbsp;&nbsp;
<!--Popups must be named product so that the information will land in the product description field in the cart.-->

<select name="product[]" size="1">

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

</select>&nbsp;&nbsp;&nbsp;

<select name="product[]" size="1">

<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>

</select>&nbsp;&nbsp;

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

</form>

11i.        

Image Submit with Popup Menus and Checkboxes.

     

 Text HereText HereText HereText Here

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type of each option
  • and select more than one of another option.

You can add and/or delete popup menus and checkboxes.

Source Code:

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

<input type="hidden" name="item" value="011i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;
<input type="hidden" name="quantity" value="1 ">
<!--Popups must be named product so that the information will land in the product description field in the cart.-->

<select name="product[]" size="1">

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

</select>&nbsp;&nbsp;&nbsp;&nbsp;<select name="product[]" size="1">

<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>

</select><br> <p>&nbsp;

<input type="checkbox" value="Value1" name="product[]">Text Here
<input type="checkbox" value="Value2" name="product[]">Text Here
<input type="checkbox" value="Value3" name="product[]">Text Here
<input type="checkbox" value="Value4" name="product[]">Text Here<br>
</p>
<p>
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle"></p>

</form>

12i.        

Image Submit with Popup Menus, Checkboxes and quantity Input.

      

 Text HereText HereText HereText Here

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type of each option
  • and select more than one of another option
  • in any quantity.

You can add and/or delete popup menus and checkboxes.

Source Code:

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

<input type="hidden" name="item" value="012i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;
<input size="2" maxlength="2" type="text" name="quantity" value="1">
<!--Popups must be named product so that the information will land in the product description field in the cart.-->&nbsp;&nbsp;

<select name="product[]" size="1">

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

</select>&nbsp;&nbsp;&nbsp;

<select name="product[]" size="1">

<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>

</select><br>
<p>&nbsp;

<input type="checkbox" value="Value1" name="product[]">Text Here
<input type="checkbox" value="Value2" name="product[]">Text Here
<input type="checkbox" value="Value3" name="product[]">Text Here
<input type="checkbox" value="Value4" name="product[]">Text Here<br>
</p>
<p>
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle"></p>

</form>

13i.      

Image Submit with Popup Menus and Radio Buttons.


  
 Text Here    Text Here  Text Here    Text Here 

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type of each option
  • and select only one one of another option

You can add and/or delete popup menus and radio buttons.

Source Code:

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

<input type="hidden" name="item" value="013i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;
<input type="hidden" name="quantity" value="1 ">
<!--Popups must be named product so that the information will land in the product description field in the cart.-->

<select name="product[]" size="1">

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

</select>&nbsp;

<select name="product[]" size="1">

<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>

</select><br>

<input type="radio" value="ValueA" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueB" name="product[]">&nbsp;Text Here&nbsp;

<input type="radio" value="ValueC" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueD" name="product[]">&nbsp;Text Here&nbsp;
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

14i.     

Image Submit with Popup Menus, Radio Buttons and quantity Input.

      

 Text Here    Text Here  Text Here    Text Here

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type of each option
  • and select only one one of another option
  • and order in any quantity.

You can add and/or delete popup menus and radio buttons.

Source Code:

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

<input type="hidden" name="item" value="014i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;
<input size="2" maxlength="2" type="text" name="quantity" value="1">
<!--Popups must be named product so that the information will land in the product description field in the cart.-->&nbsp;&nbsp;

<select name="product[]" size="1">

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

</select>&nbsp;&nbsp;&nbsp;

<select name="product[]" size="1">

<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>

</select><br>
<p>

<input type="radio" value="ValueA" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueB" name="product[]">&nbsp;Text Here&nbsp;
<input type="radio" value="ValueC" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueD" name="product[]">&nbsp;Text Here</p>
<p>
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle"></p>

</form>

15i.      

Image Submit with Popup Menus, Radio Buttons and Checkboxes.

  

 Text Here    Text Here  Text Here    Text Here

 Text HereText HereText HereText Here

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type of each option
  • and select only one of another option
  • and select more than one of yet another option.

You can add and/or delete popup menus, radio buttons and checkboxes.

Source Code:

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

<input type="hidden" name="item" value="015i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;
<input type="hidden" name="quantity" value="1 ">
<!--Popups must be named product so that the information will land in the product description field in the cart.-->

<select name="product[]" size="1">

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

</select>&nbsp;

<select name="product[]" size="1">

<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>

</select><br>
<p>


<input type="radio" value="ValueA" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueB" name="product[]">&nbsp;Text Here&nbsp;
<input type="radio" value="ValueC" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueD" name="product[]">&nbsp;Text Here<br>
</p>
<p>&nbsp;
<input type="checkbox" value="Value1" name="product[]">Text Here
<input type="checkbox" value="Value2" name="product[]">Text Here
<input type="checkbox" value="Value3" name="product[]">Text Here
<input type="checkbox" value="Value4" name="product[]">Text Here<br>
</p>
<p>
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle"></p>

</form>

16i.      

Image Submit with Popup Menus, Radio Buttons, and Checkboxes with quantity Input.

  

 Text Here    Text Here  Text Here    Text Here

 Text HereText HereText HereText Here

This BuyObject is appropriate when you have an item that

  • comes in multiple options and
  • you wish people to be able to select one type of each option
  • and select only one one of another option
  • and select more than one of yet another option.
  • and order in any quantity.

You can add and/or delete popup menus, radio buttons and checkboxes.

Source Code:

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

<input type="hidden" name="item" value="016i">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;
<input size="2" maxlength="2" type="text" name="quantity" value="1">
<!--Popups must be named product so that the information will land in the product description field in the cart.-->

<select name="product[]" size="1">
<option value="Color Unspecified" selected>Color</option>
<option value="White">White</option>
<option value="Beige">Beige</option>
<option value="Blue">Blue</option>
<option value="Puce">Puce</option>
<option value="Pink">Pink</option>
<option value="Rose">Rose</option>
<option value="Teal">Teal</option>
</select>&nbsp;

<select name="product[]" size="1">
<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>
</select><br>

<input type="radio" value="ValueA" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueB" name="product[]">&nbsp;Text Here&nbsp;
<input type="radio" value="ValueC" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueD" name="product[]">&nbsp;Text Here<br> &nbsp;
<input type="checkbox" value="Value1" name="product[]">Text Here
<input type="checkbox" value="Value2" name="product[]">Text Here
<input type="checkbox" value="Value3" name="product[]">Text Here
<input type="checkbox" value="Value4" name="product[]">Text Here<br>
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle">

</form>

17i.      

Image Submit with Inscription Field.

  

This BuyObject is appropriate when you have an item that

  • comes with an inscription, engraving or other brief sentiment.

Source Code:

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

<input type="hidden" name="item" value="017iInsc">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<!--quantity Field must have Value of at least 1, or no transaction can take place.-->
<input type="hidden" name="quantity" value="1"> <input type="hidden" name="tax">
<!--CustID value must all 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">
<p>&nbsp;&nbsp;
<input type="text" bgcolor="#395263" value="Inscription" name="product[]" size="24" maxlength="24"></p>
<p><!--Image Submit Button does not need a link to the cart. Only the image needs to be linked. -->
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle"></p>

</form>

18i.      

Image Submit with Inscription Field, Popup Menus, Radio Buttons and Checkboxes

  

 Text Here    Text Here  Text Here    Text Here


 Text HereText HereText HereText Here

This BuyObject is appropriate when you have an item that

  • comes with an inscription, engraving or other brief sentiment
  • you wish people to be able to select multiple options of various combinations..

You can add or delete popup menus, radio buttons or checkboxes.

Source Code:

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

<input type="hidden" name="item" value="017InscOpt">
<input type="hidden" name="product[]" value="Product Name">
<input type="hidden" name="price" value="0.01">
<input type="hidden" name="nontax" value="no">
<!--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;
<input size="2" maxlength="2" type="text" name="quantity" value="1">
<!--Popups must be named product so that the information will land in the product description field in the cart.-->

<select name="product[]" size="1">
<option value="Color Unspecified" selected>Color</option>
<option value="White">White</option>
<option value="Beige">Beige</option>
<option value="Blue">Blue</option>
<option value="Puce">Puce</option>
<option value="Pink">Pink</option>
<option value="Rose">Rose</option>
<option value="Teal">Teal</option>
</select>&nbsp;

<select name="product[]" size="1">
<option value="Size Unspecified" selected>Size</option>
<option value="30/30">30/30</option>
<option value="30/32">30/32</option>
<option value="32/32">32/32</option>
<option value="34/32">34/32</option>
<option value="34/34">34/34</option>
</select><br>
<p>

<input type="radio" value="ValueA" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueB" name="product[]">&nbsp;Text Here&nbsp;
<input type="radio" value="ValueC" name="product[]">&nbsp;Text Here&nbsp;&nbsp;
<input type="radio" value="ValueD" name="product[]">&nbsp;Text Here</p>
<p><br>
&nbsp;
<input type="checkbox" value="Value1" name="product[]">Text Here
<input type="checkbox" value="Value2" name="product[]">Text Here
<input type="checkbox" value="Value3" name="product[]">Text Here
<input type="checkbox" value="Value4" name="product[]">Text Here<br>
</p>
<p>
<input type="text" bgcolor="#395263" value="Inscription" name="product[]" size="24" maxlength="24">
<input type="image" border="0" name="imageField" src="Images/add.gif" align="absmiddle"></p>

</form>

19i.      

Image View Cart Button

View Cart

This BuyObject is for viewing the cart contents with when

  • you are using BuyButtons such as the "OK BuyObject", (Note: Because the "OK BuyObject" requires a GoLive Action, a template "OK BuyObject" page is included in the Kit that you can just modify to suit your needs.
  • others that do not automatically take the customer to the cart view upon making a purchase. or
  • just want the customer to be able to view the contents of the cart.

It is a customer friendly practice to include one of these on every page of your catalog.

Source Code:

<form action="../Cart/viewcart.php" method="get" name="ViewCartButton">
<!-- (C) 2001 eCatalogBuilders. All rights reserved by eCatalogBuilders. -->
<a href="../Cart/cart.php" title="View Cart Image Button"><img alt="View Cart" border="0" height="28" src="images/viewcart.gif" width="97"></a>
</form>

20i.      

Image Checkout Button

Checkout Image Submit

This BuyObject is for

  • getting to the checkout page.

It is a customer friendly practice to include one of these on every page of your catalog.

Source Code:

<form action="../Cart/checkout.php" method="get" name="CheckoutButton">
<!-- (C) 2001 eCatalogBuilders. All rights reserved by eCatalogBuilders. -->
<a href="Cart/checkout.php"><img alt="Checkout Image Submit" src="images/checkout.gif" border="0" width="97" height="28" name="CheckoutIcon"></a>
</form>

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

Top