테스트 사이트 - 개발 중인 베타 버전입니다

php 버전이로 인한 오류 채택완료

h3style 3년 전 조회 2,277

그누보드 php 8.0에 설치했습니다.

 

여유필드로 글쓰기를 만들었는데 오류가 나서요

어디가 잘못된걸까요? ㅜㅜ

 

-코드-

 <input type="text" name="wr_2" value="<?php echo $write['wr_2'] ?>" id="wr_2" class="frm_input full_input w_inputs"  placeholder="대표전화" style="width:40%;">

if($write['wr_5'] == null){$write['wr_5'] = test;}
if($write['wr_6'] == null){$write['wr_6'] = test;}

 

-오류메시지-

Warning: Undefined array key "wr_5" in /home1/bebeco/public_html/theme/style1/skin/board/mapV2/write.skin.php on line 9

Warning: Undefined array key "wr_6" in /home1/bebeco/public_html/theme/style1/skin/board/mapV2/write.skin.php on line 10

 

/home1/bebeco/public_html/theme/style1/skin/board/mapV2/write.skin.php on line 103
" id="wr_2" class="frm_input full_input w_inputs" placeholder="대표전화" style="width:40%;">

댓글을 작성하려면 로그인이 필요합니다.

답변 3개

채택된 답변
+20 포인트
들레아빠

</p>

<p> <input type="text" name="wr_5" value="<?php if(empty($write['wr_5']))echo 'test';else echo $write['wr_5'] ?>" id="wr_5" class="frm_input full_input w_inputs"  placeholder="대표전화" style="width:40%;">

 <input type="text" name="wr_6" value="<?php if(empty($write['wr_6']))echo 'test';else echo $write['wr_6'] ?>" id="wr_6" class="frm_input full_input w_inputs"  placeholder="대표전화" style="width:40%;"></p>

<p>

로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

3년 전

배열이 값이 없어서 그런거 같습니다. 그누도 보시면 배열기본 null 로 지정을 해줍니다. 참고해서 배열 기본값을 지정해주시면 될거 같습니다.

로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

h
h3style
3년 전
<input type="text" name="wr_2" value="<?php echo $write['wr_2'] ?>" id="wr_2" class="frm_input full_input w_inputs" placeholder="대표전화" style="width:40%;">

"<?php echo $write['wr_2'] ?> 이부분이 잘못된거 같아요. 방법이 없을까요?

댓글을 작성하려면 로그인이 필요합니다.

wr_5

wr_6

변수가 없다는 이야기 인듯 싶네요 

 

저 두개의 변수로  post 보내주시면 해결 될듯 싶네요 

로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

h
h3style
3년 전
<input type="text" name="wr_2" value="<?php echo $write['wr_2'] ?>" id="wr_2" class="frm_input full_input w_inputs" placeholder="대표전화" style="width:40%;">

이것도 오류가 나는데요 변수가 아니고 "<?php echo $write['wr_2'] ?> 이부분이 잘못된거 같아요

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인