기본적인 sql문 질문입니다
본문
안녕하세요
백앤드는 정말 모르는 프론트앤드 개발자입니다
백앤드를 공부하던중에 오류가 발생해서 질문드리게 되었습니다
$sql = " INSERT INTO {$g5['re_resume']} SET re_name = '".$re_name."', re_eg_name = '".$re_eg_name."', re_birth = '".$re_birth."', re_sex = '".$re_sex."', re_email = '".$re_email."', re_mobile = '".$re_mobile."', re_phone = '".$re_phone."', re_addr1 = '".$re_addr1."', re_addr2 = '".$re_addr2."', re_pw = '".$re_pw."', re_pw2 = '".$re_pw2."', re_picture = '".$re_picture."', marriage = '".$marriage."', branch = '".$branch."', pt_ex = '".$pt_ex."', wo_ex = '".$wo_ex."', in_ex = '".$in_ex."', re_route = '".$re_route."', drinking = '".$drinking."', smoking = '".$smoking."', intro_content = '".$intro_content."', char_content = '"$char_content."', motive_content = '".$motive_content."' ";
이런식으로 제가 코드를 짰는데요
아무리 봐도 잘못된 부분을 찾을 수가 없습니다.
어느 부분에서 오류가 난걸까요
답변 2
$sql = " INSERT INTO {$g5['re_resume']} SET re_name = '".$re_name."', re_eg_name = '".$re_eg_name."', re_birth = '".$re_birth."', re_sex = '".$re_sex."', re_email = '".$re_email."', re_mobile = '".$re_mobile."', re_phone = '".$re_phone."', re_addr1 = '".$re_addr1."', re_addr2 = '".$re_addr2."', re_pw = '".$re_pw."', re_pw2 = '".$re_pw2."', re_picture = '".$re_picture."', marriage = '".$marriage."', branch = '".$branch."', pt_ex = '".$pt_ex."', wo_ex = '".$wo_ex."', in_ex = '".$in_ex."', re_route = '".$re_route."', drinking = '".$drinking."', smoking = '".$smoking."', intro_content = '".$intro_content."', char_content = '"$char_content."', motive_content = '".$motive_content."' ";
echo $sql;exit;
echo $sql; 로 찍어서 확인해 보세요.