注文リンクを作るには?

注文ボタンのかわりにテキストリンクで作ることができます。

手順
1.注文ボタン用のHTMLコードを生成する
2.次のようなコードが生成されたら、

<form action=""https://www.mlritz.com/shop.php"" method=""post""/>
<input type=""hidden"" name=""action"" value=""Shop.Cart"" />
<input type=""hidden"" name=""type"" value=""addItem"" />
<input type=""hidden"" name=""p1"" value=""Sxxxxxxxxxxxx"" />
<input type=""hidden"" name=""p2[0]"" value=""yyyy"" />
<input type=""hidden"" name=""p3[0]"" value=""1"" />
<input type=""submit"" value=""ボタン名"" />
</form>

3.次のようにURLを作る
<a href=""https://www.mlritz.com/shop.php?action=Shop.Cart&type=addItem&p1=Sxxxxxxxxxxxx&p2=yyyy&p3=1"">ボタン名</a>

p1はショップ番号
p2[0]は商品番号
p3[0]は個数