아래처럼 오류가 발생하는데요 어떻게 해야될까요?
고수님들 조언 좀 부탁드립니다.
경고 : 정의되지 않은 상수 wr_8 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_8'(이는 PHP의 향후 버전에서 오류 발생)으로 가정 8 행
경고 : 정의되지 않은 상수 wr_8 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_8'(이는 PHP의 향후 버전에서 오류 발생)으로 가정 8 행
경고 : 정의되지 않은 상수 wr_9 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_9'(이는 PHP의 향후 버전에서 오류 발생)로 가정 9 행
경고 : 정의되지 않은 상수 wr_9 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_9'(이는 PHP의 향후 버전에서 오류 발생)로 가정 9 행
경고 : 정의되지 않은 상수 wr_8 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_8'(이는 PHP의 향후 버전에서 오류 발생)으로 가정 11 행
37.566400714093,
경고 : 정의되지 않은 상수 wr_9 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_9'(이는 PHP의 향후 버전에서 오류 발생)로 가정 11 행
126.97853918975
경고 : 정의되지 않은 상수 wr_8 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_8'(이는 PHP의 향후 버전에서 오류 발생)으로 가정 8 행
경고 : 정의되지 않은 상수 wr_9 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_9'(이는 PHP의 향후 버전에서 오류 발생)로 가정 9 행
경고 : 정의되지 않은 상수 wr_9 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_9'(이는 PHP의 향후 버전에서 오류 발생)로 가정 9 행
경고 : 정의되지 않은 상수 wr_8 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_8'(이는 PHP의 향후 버전에서 오류 발생)으로 가정 11 행
37.566400714093,
경고 : 정의되지 않은 상수 wr_9 사용-/host/home1/html/theme/a01/skin/board/product_01/write.skin.php에서 'wr_9'(이는 PHP의 향후 버전에서 오류 발생)로 가정 11 행
126.97853918975
답변 2개 / 댓글 1개
채택된 답변
+20 포인트
5년 전
따옴표를 빼고 배열 키를 사용한듯합니다.
Copy
$write[wr_8]
$write[wr_9]
// 위와 같이 되어있다면 아래와 같이 고치세요
$write['wr_8']
$write['wr_9']
답변에 대한 댓글 1개
5년 전
정확한 답을 위해선, 해당 오류가 있는 부분의 코드를 같이 올리셔야 합니다.
답변을 작성하려면 로그인이 필요합니다.