まず、この質問が非常に基本的/冗長である場合は申し訳ありません。私はPHPの経験がなく、プログラミングの経験もほとんどありません。
基本的に、私がやろうとしているのは、ここで提供されているローテーション スクリプトを利用することです。
http://www.jim.am/rotating-offer-pages-and-landing-pages-in-prosper202/
私はサイトの指示に従った. それらは本当に非常に簡単です.
ただし、「rotate.php?kw=」リンクをクリックすると、明らかに空白のページに移動します。何らかの理由で回転スクリプトが機能していないようです。
だから私は、PHPに精通している人がコードを一目で見てくれることを望んでいます(上記のリンクにあります)。ところで、そのわずか15行のコード...
ありがとう!
編集:
ローテーションでの私の試みへのリンクは次のとおりです。
http://test.p2track.com/rotate.php?kw=test123
私のコードは以下です:
<?php
if ($_GET['kw']) {
$kw = strip_tags($_GET['kw']);
} else { $kw = ‘jimrocks’; }
$landingpages = array(
// paste as many tracking links as you like below
// copy and paste the whole line and put the link between the ‘ and the ‘
‘http://be2canada.struenet.com/RuleLP/?t202id=3109&t202kw=’.$kw,
‘http://be2canada.struenet.com/RegLP/?t202id=8115&t202kw='.$kw,
);
$searchlink = $landingpages[array_rand($landingpages)];
header(“HTTP/1.1 301 Moved Permanently”);
header(“Location: $searchlink”);
exit();
?>
OK - 私の新しいコード:
<?php
if ($_GET['kw']) {
$kw = strip_tags($_GET['kw']);
} else { $kw = ‘jimrocks’; }
$landingpages = array(
// paste as many tracking links as you like below
// copy and paste the whole line and put the link between the ‘ and the ‘
'http://be2canada.struenet.com/RuleLP/?t202id=3109&t202kw='.$kw,
'http://be2canada.struenet.com/RegLP/?t202id=8115&t202kw='.$kw,
);
$searchlink = $landingpages[array_rand($landingpages)];
header(“HTTP/1.1 301 Moved Permanently”);
header(“Location: $searchlink”);
exit();
?>