Posted: Fri Dec 19, 2003 3:37 am
Is it save to suppress the notices? I mean if I suppress all the notices, will there be any future unforesee problems? Just want to find out....Weirdan wrote:When you uncheck the checkbox and then click submit, browser just don't send the checkbox value as a part of the request. So on the server side corresponding var is undefined. you need to test, if it's defined:or just suppress the notice:Code: Select all
if(isset($test)) echo $test;Code: Select all
echo @$test;