PHP 5.3.3 _server['query_string'] 错误

PHP 5.3.3 _server['query_string'] ERROR

我在 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>

我得到的是 link:

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

short_open_tags 您的服务器未启用。

尝试使用 <?php ?> 而不是 <? ?>

<?php echo $variable;?>而不是<?=$variable;?>