You get this notice because $_POST['var']; is not set.

You can change your PHP settings in php.ini to not display PHP
notices:
error_reporting = E_ALL & ~E_NOTICE

Better would be to change the test to be PHP Strict compliant:
<?php isset($_POST['var']) echo $_POST['var']; ?>


Kind regards,
Walter
_______________________________________________
Cherokee mailing list
[email protected]
http://lists.octality.com/listinfo/cherokee

Reply via email to