
01-16-2006, 02:29 PM
|
|
Just Registered
|
|
Join Date: Jan 2006
Posts: 1
|
|
HTML Forms Help
Hello everyone,
I have an online store and I am currently using form tags like the one below for my store:
<TR>
<TD ALIGN="CENTER">
<FORM><INPUT TYPE="button" value="Larger Image" onClick="javascript:my_win1()"></FORM>
<form target="paypal" action="http://emartcart.com/cart/odb/cart.odb" method="post">
<INPUT NAME="CartCfg" TYPE="hidden" VALUE="3159">
<INPUT NAME="bName" TYPE="hidden" VALUE="E-Commerce Store">
<INPUT NAME="noGiftCerts" TYPE="hidden" VALUE=1>
<input type="image" src="http://jalenscloud.aricandgladys.com/Images/addcart.jpg" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="product" value="Wooden Shelf w/ Drawers">
<input type="hidden" name="item_number" value="34703">
<input type="hidden" name="amount" value="14.95">
<INPUT TYPE="hidden" NAME="qty" VALUE="1">
<input type="hidden" name="return" value="javascript:window.close();">
</form></CENTER></TD>
There are several values in the tag above such as "item_number" and "amount", that I need to modify each time I want to add a new product to my online store.
Does anyone know of a way that I can create a form or a web editor of some kind that will simply allow me to put in the values that I need to change. Then produce a result that has the tag and all its contents in the same format but contains the new values?
Thanks
|