第一關,對不起,如果這個問題是非常基本的/冗餘。我沒有PHP的經驗,並沒有編程經驗。有麻煩一個PHP腳本旋轉工作
基本上,我試圖做的是利用了在這裏提供一個旋轉的腳本:
http://www.jim.am/rotating-offer-pages-and-landing-pages-in-prosper202/
我跟着網站上的說明,他們真的很簡單 - 因爲所有我需要的要做的就是換掉他的鏈接。
然而,當我點擊我的「rotate.php?千瓦=」鏈接它只是給這顯然只是一個空白的頁面。看起來旋轉腳本因某種原因不起作用。
所以我只是希望有人更熟悉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();
?>
鏈接轉到博客文章,不是你的代碼。 – Barmar
請發表您的代碼和錯誤消息(如果有的話)。沒有,我們不知道你在做什麼錯。 – bansi
OK - 這裏是我的代碼:編輯:它真的很難給它正確地格式化...生病嘗試編輯我的OP – DeHustle