01   <?php
02   $aa=$_GET['name'];
03   if(empty($aa)){
04   echo "没有值";
05   }else{
06   echo $aa;
07   }
08   ?>
09   <a href="index.php?name=123456">中国</a>
这段PHP代码在测试时总是提示01处有错误,
Notice: Undefined index: style in D:\wamp\www\bolg\index.php on line 01
如果点了超链,他又正常了,请问这个问题是不是apache配置出现的问题,请问如何解决。