INPUTタグについてちょこっとだけ。

■ボタンで別の画面へするやり方。
<input type="button" value="他のページ" onclick="location.href='http://tamacchi.ciao.jp/web_cart/cart.php'">
※エスケープに気を付けること。カンマは\'で対応した。(phpのソース内の場合)


■履歴を引き継いで前のページヘ戻るやり方。
<input type="button" value="前の画面に戻る" onclick="history.back()">
※アンカーテキストで書く場合。
<a href="javascript:history.back();">戻る</a>

なんだかんだでショップ機能付きサイトの構築できた~