Hey all,
I am desperate. All I need is a variable like function...
Basically the result received from this "chained select" below (result located at the final FINAL RESULT arrow on the code below) to go into the nominated field (the one with final result goes here marked on it) on the form below it. Please help.
(CHAINED SELECT)
addListGroup("choices", "category");
addOption("category", "Select a category", "");
addList("category", "choice1", "", "choice1");
addList("category", "chioce2", "", "choice2");
addOption("choice1", "Select a sub catagory", "");
addOption("choice1", "subcata", "subcata");
addOption("choice1", "subcatb", "subcatb");
addOption("choice1", "subcatc", "subcatc");
addOption("choice2", "Select a sub catagory", "");
addOption("choice2", "subcat1", "subcat1");
addOption("choice2", "subcat2", "subcat2");
addOption("choice2", "subcat3", "subcat3"); <---- FINAL RESULT
(FORM)
<FORM NAME=order ACTION="managecart.html" onSubmit="AddToCart(this);">
Quantity: <input type=text size=2 maxlength=3 name=QUANTITY onChange='this.value=CKquantity(this.value)' value="1">
<input type="image" src="./images/select.gif" border=0 value="Add to Cart" align=top>
<input type=hidden name=PRICE value=" ***********FINAL RESULT APPEAR HEAR************** ">
</FORM>
Any Ideas
Echo
I am desperate. All I need is a variable like function...
Basically the result received from this "chained select" below (result located at the final FINAL RESULT arrow on the code below) to go into the nominated field (the one with final result goes here marked on it) on the form below it. Please help.
(CHAINED SELECT)
addListGroup("choices", "category");
addOption("category", "Select a category", "");
addList("category", "choice1", "", "choice1");
addList("category", "chioce2", "", "choice2");
addOption("choice1", "Select a sub catagory", "");
addOption("choice1", "subcata", "subcata");
addOption("choice1", "subcatb", "subcatb");
addOption("choice1", "subcatc", "subcatc");
addOption("choice2", "Select a sub catagory", "");
addOption("choice2", "subcat1", "subcat1");
addOption("choice2", "subcat2", "subcat2");
addOption("choice2", "subcat3", "subcat3"); <---- FINAL RESULT
(FORM)
<FORM NAME=order ACTION="managecart.html" onSubmit="AddToCart(this);">
Quantity: <input type=text size=2 maxlength=3 name=QUANTITY onChange='this.value=CKquantity(this.value)' value="1">
<input type="image" src="./images/select.gif" border=0 value="Add to Cart" align=top>
<input type=hidden name=PRICE value=" ***********FINAL RESULT APPEAR HEAR************** ">
</FORM>
Any Ideas
Echo