php.ini中error_reporting = E_ALL & ~E_NOTICE
重启web服务器
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>