sql 테이블 insert 에러
본문
$sql="INSERT_INTO topic (title,description,created)
VALUES ('{$_POST['title']}',
'{$_POST['description']}',
NOW())";
$result=mysqli_query($conn,$sql);
if($result===false){
echo 'insert error';
error_log(mysqli_error($conn));
}
이 코드를 실행시키면 에러가 납니다.
그누보드가 설치된 DB에 topic 테이블은 만들어져있고요.
INSERT INTO topic( title, description, created )
VALUES (
'test5', 'test5 is content', NOW( )
);
위 코드로 mysql어드민에서는 정상으로 인서트 되고 있는데
php코드에서는 에러가 나고 있습니다..
php코드로 변환했더니
'INSERT INTO topic( title,description,created ) VALUES (\'test5\',\'test5 is content\',NOW());';
이렇게 나옵니다.
제가 멀 잘못해서 error가 나는지 궁금합니다.
답변을 작성하시기 전에 로그인 해주세요.