请告知PHP脚本问题

时间:2010-09-29 05:19:08

标签: php

我在这里看到了这个PHP URL Rotator脚本(http://motiongroove.com/2010/03/03/free-php-url-rotator-script/),但出于某种原因,该死的东西一直给我这个错误:

致命错误:在第4行的/servername/index.php中调用未定义的函数sset()

这是我收到的准则:

<?php $link[1] = "http://yourdomain.com/index1.html";
$link[2] = "http://yourdomain.com/index2.html";
$link[3] = "http://yourdomain.com/index3.html";
if(!sset($HTTP_cookie_VARS['link'])){ $n=count($link); 
$rand=rand(1,$n); setcookie("link",$rand,time()+3600);
header('location:'.$link[$rand]); }else{ $go=$link[$_COOKIE['link']]; header('location:'.$go); } ?>

谢谢!

1 个答案:

答案 0 :(得分:2)

应该是isset(),而不是sset()

那是:

if(!isset($HTTP_COOKIE_VARS['link']))

在第四行的开头。

我相信COOKIE必须是$ HTTP_COOKIE_VARS中的大写。