php.ini中error_reporting = E_ALL & ~E_NOTICE
或在程序开头加上:
error_reporting(E_ALL & ~E_NOTICE);

解决方案 »

  1.   

    ---------you_are.php提示的错误---------
    Notice: Undefined variable: person in c:\inetpub\wwwroot\wangwei\you_are.php on line 8
    Well,hello,nice to meet you!Notice: Undefined variable: person in c:\inetpub\wwwroot\wangwei\you_are.php on line 10
      

  2.   

    who_are_you.php 没有错误在我机子上,
    you_are.php如下<html>
    <head>
    <title> You Are... </title>
    </head><body>
    <?php
    print('Well,hello'.$_POST['person'].',nice to meet you!');
    print('<br />');
    print('<a href="who_are_you.php?person='.urlencode($person).'">Back to Who Are You ?</a>');
    ?>
    </body>
    </html>
      

  3.   

    各位高手能不能讲讲php究竟怎样安装在IIS里,请尽量详细点,因为我很菜。
    在下系统:win2000 server;IIS是系统自带;IE5.0
    如能相告,不胜感激。
      

  4.   

    具体安装方法请参看这篇文章:
    http://www.phpe.net/articles/260.shtml