Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
External Cart and Custom Fields
Hi,
I would like to pass a custom value into the form that gets stored in a custom transaction body field. Is this doable?
<form id="nsform" action="<?php echo $addItemToCart;?>" method="post" >
<input type="hidden" name="c" value="<?php echo $nsAcctNumber; ?>"/>
<input type="hidden" name="ext" value="T"/>
<input type="hidden" name="n" value="2"/>
<input type="hidden" name="qtyadd" value='1'/>
<input type="hidden" name="buyid" value='multi'/>
<input type="hidden" name="custbody5" value="test"/>
<input type="hidden" name="multi" value="(numbers go here)"/>
0