TOPページの設定
+-[awsshop]
+-- index.php
$Bookstop = '465610';
$Musictop = '562032';
$DVDtop = '562002';
$VideoGamestop = '637872';
$Electronicstop = '3210991';
$Toystop = '13299531';
$Kitchentop = '3839151';
$Softwaretop = '637630';
$SportingGoodstop = '14917131';
オススメ商品・複数の設定。
「$XXXXtop = 'ブラウズ番号';」という形です。
ブラウズ番号のみ変更可能。
$topasin[0] = 'B000B9NBNI';
$topasin[1] = '4594049664';
$topasin[2] = 'B000BQT6XK';
オススメ商品・単品の設定。
「$topasin[X] = 'ASIN番号';」という形です。
例えばTOPページに「index.php」のhtmlの編集できる場所で、
「DVDのオススメ」(複数)を載せたい場合は
<?php include($DVDtop);?>
「音楽のオススメ」(複数)なら
<?php include($Musictop);?>
オススメ商品個別の場合は
<?php include($topasin[0]);?>
<?php include($topasin[1]);?>
<?php include($topasin[2]);?>