Place links anywhere in your website that send requests to shopman.htm to add, set, delete, or review items in the cart. The content of the links may contain the following name/value pairs :
A complete link for an item might look like this
<a href="/sc/shopman.htm?func=add&code=xt345b&price=245.00&desc=Custom+Item&quan=1&avail=1&url=/pages/thispage.htm#customitem">Add Custom Item</a>
If you would like to specify a hash location in the "url=" value for referback to a specific location on the page (like #customitem above), then "url=" must come last in the string of name/value pairs.
URL Encoding
If your descriptions or codes may contain other than alphanumeric characters, then remember to urlencode them. With PHP, use the "urlencode" function. With JavaScript, use the "escape" function.
If using the javascript "escape" function in your page, also string replace the "@" to "%40" for compatibility with future browsers.