2013-07-05 44 views
1

第一關,對不起,如果這個問題是非常基本的/冗餘。我沒有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(); 
?> 
+0

鏈接轉到博客文章,不是你的代碼。 – Barmar

+0

請發表您的代碼和錯誤消息(如果有的話)。沒有,我們不知道你在做什麼錯。 – bansi

+0

OK - 這裏是我的代碼:編輯:它真的很難給它正確地格式化...生病嘗試編輯我的OP – DeHustle

回答

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"); 

即使計算器的代碼高亮檢測到

+1

如果它提供了錯誤信息並且作者能夠自己修復它,該怎麼辦? – WooDzu

+0

我編輯了代碼,但它仍然不起作用 - 我將發佈我的新代碼在OP中的外觀。 – DeHustle

+0

雙引號還有一個問題。請參閱上文 – WooDzu

0

變化‘’「」''""相應。

看起來像從某處代碼複製粘貼。

+0

BAM和它的作品!謝謝! – DeHustle

+0

@ user1526218很高興知道..cheers !!!! – swapnesh