itemcopyupdate.php파일 오류메세지 발생합니다
itemcopyupdate.php파일 오류메세지 발생합니다 만
리스트로 돌아가서 새로고침 해보면 복사는 되어 있습니다
서버환경 ca**24호스팅, UTF-8 (PHP5.3, MySQL5.x)입니다.
1064 : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's Edition contains 60 lessons with patterns, songs, games, and hands-on activiti' at line 1
error file : /adm/shop_admin/itemcopyupdate.php
리스트로 돌아가서 새로고침 해보면 복사는 되어 있습니다
서버환경 ca**24호스팅, UTF-8 (PHP5.3, MySQL5.x)입니다.
1064 : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's Edition contains 60 lessons with patterns, songs, games, and hands-on activiti' at line 1
error file : /adm/shop_admin/itemcopyupdate.php
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 3개
좀 더 구체적인 오류 내용과 상품정보 등을 알려주시기 바랍니다.
[code]
$sql = " update {$g5['g5_shop_item_table']} set it_explan = '{$cp['it_explan']}' where it_id = '$new_it_id' ";
[/code]
위 코드를 아래처럼 수정합니다.
[code]
$sql = " update {$g5['g5_shop_item_table']} set it_explan = '".addslashes($cp['it_explan'])."' where it_id = '$new_it_id' ";
[/code]
2가지( it_explan it_mobile_expla )부분에 적용했습니다
감사합니다
----에디터에 내용이 없을때는 발생하지 않았으나 내용이 있을때 발생했던것 같습니다.