PHP 5.3.3 _server [' query_string']错误

时间:2015-07-08 12:51:22

标签: php wordpress version

我在PHP服务器5.3.3上使用wordpress,当我尝试获取$_SERVER['QUERY_STRING']时出现错误。

我的代码如下:

$query_string = $_SERVER['QUERY_STRING'];     

if($current_user->user_nicename == "admin"){
    echo '<a class="button add_to_cart_button product_type_simple" href="#" target="_blank" >Lista cursos</a>';
      if(isset($_GET['demo'])){ 
          if (strpos($query_string,'&demo') !== false)
            $enlacesindemo = str_replace("&demo","",$query_string);
      }
}
?>
        <a  class="button add_to_cart_button product_type_simple" href="index.php?<?= $enlacesindemo ?>" target="_self">Ver todos</a>

我把它作为链接:

index.php?<?= $query_string ?>&demo

1 个答案:

答案 0 :(得分:1)

您的服务器未启用

short_open_tags

尝试使用<?php ?>代替<? ?>

<?php echo $variable;?>代替<?=$variable;?>