Shopping Cargo
お客様のデイレクトリ /home/Account/html/usr/cargo/に、既にセットされています。 htmlソースには次のように記述してください。 <form action="cargo.cgi" method="post">
基本は <form method=post action="cargo.cgi"> <input type=hidden name="action" value="regist"> 商品A <input type=hidden name="goods" value="商品A"> 単価 1,000円 <input type=hidden name="unit" value="1000"> 購入数 <input type=text name="amount" value="0" size=3>個<br> 備考 <input type=text name="rem" value="" size=20> <input type=submit value="カゴへ"> </form> です。 項目名(name) 内容(value) ------------------------------------------------------------- goods 商品名(任意の文字列) unit 単価(半角数字:カンマを入れない) amount 個数(半角数字:カンマを入れない) rem メモ欄(無くてもいい項目) type=hidden|text|radio|checkbox または select はどれを使って もOKです。 設置済みのオーダーフォームには、殆どのタイプが使用されていますので パターンをコピーして使用下さい。
|