_________________________________________________________________________
계속 지우 보드에서 , $_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
-------------------------------------------------------------------------------------------------
'php' 카테고리의 다른 글
게시판 만들기 파트 1 (0) | 2013.04.05 |
---|---|
코드이그나이터 기반 쇼핑몰 개발 정보 (0) | 2013.04.03 |
방명록 기초 로직 연습 (0) | 2013.04.02 |
php 5.4에서 변수명 에러날때 해결방법 (0) | 2013.03.26 |