_________________________________________________________________________

 

계속 지우 보드에서 , $_GET 변수 에러가 남 

우선 해결은 임시로 함....

내 컴퓨터 에러 메시지

--->    Notice: Undefined index: last_secret_view in

          C:\BitNami\wampstack-5.4.13-0\apache2\www\zb\list.php on line 475

해결 :: 

---> 다음 블로그 에서 참고함....

http://blog.naver.com/hhangky?Redirect=Log&logNo=20091272024


WHEN using $_POST or $_GET 사용할때 에러날 경우

Notice : Undefined index 'fields of the table' in 'path of php file being execute'

on line 'current line'

---> to avoid this error, simply test whether the fields of the table was initialized with

the function isset()


// Before using $_POST['value']

if (isset($_POST['value']))

{

     ///  Instructions  if $_POST['value']  exist

}

This type of error is notified depending on the configuration of the server

it is not notified by default as it  is considered as a minor error,

corresponding to the constant   E_NOTICE

YOU can change the types of errors reported with the error_reporting function




-------------------------------------------------------------------------------------------------





+ Recent posts