1

まず、この質問が非常に基本的/冗長である場合は申し訳ありません。私は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();
?>
4

2 に答える 2

1

PHP コードのどこかに構文エラーがあるはずです。

これを php スクリプトの先頭に追加します。

error_reporting(E_ALL);
ini_set('display_errors', 1);

エラーメッセージがあれば提供してください(存在する場合)

編集:そうです、リンクに構文エラーがあります:

‘http://be2canada.struenet.com/RuleLP/?t202id=3109&t202kw=’.$kw,
‘http://be2canada.struenet.com/RegLP/?t202id=8115&t202kw='.$kw,

このアポストロフィ ' を次のように変更します: '

'http://be2canada.struenet.com/RuleLP/?t202id=3109&t202kw='.$kw,
'http://be2canada.struenet.com/RegLP/?t202id=8115&t202kw='.$kw,

また、この二重引用符 ” を次のように変更します: "

header("HTTP/1.1 301 Moved Permanently");
header("Location: $searchlink");

スタックオーバーフローのコードハイライターでさえそれを検出しました

于 2013-07-05T07:28:10.510 に答える
0
于 2013-07-05T07:48:08.287 に答える