쿼리 코드는 다음과 같습니다.
<code>$email=htmlspecialchars($_POST["email"]); if($sql->getData('SELECT * FROM user WHERE email='.$email)==NULL){ </code>
getData의 코드는 다음과 같습니다.
<code>public function getData($sql,$type=1){ $data=Array(); $db=$this->db(); $result=$db->query($sql); $sth = $db->prepare($sql); $sth->execute(); if(is_bool($result)) return $result; if($type==1) while($a = $sth->fetch(PDO::FETCH_ASSOC)) $data[]=$a; elseif($type==2) while($a = $sth->fetch(PDO::FETCH_BOTH)) $data[]=$a; if($data) return $data; else return NULL; } </code>
오류 메시지는 다음과 같습니다.
<code>Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 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 '@gmail.com' at line 1' in D:\phpStudy\WWW\core\mysql\drivers\PDO.php:61 Stack trace: #0 D:\phpStudy\WWW\core\mysql\drivers\PDO.php(61): PDO->query('SELECT * FROM u...') #1 D:\phpStudy\WWW\core\login.php(105): DB_PDO->getData('SELECT * FROM u...') #2 {main} thrown in D:\phpStudy\WWW\core\mysql\drivers\PDO.php on line 61</code>
쿼리 코드는 다음과 같습니다.
<code>$email=htmlspecialchars($_POST["email"]); if($sql->getData('SELECT * FROM user WHERE email='.$email)==NULL){ </code>
getData의 코드는 다음과 같습니다.
<code>public function getData($sql,$type=1){ $data=Array(); $db=$this->db(); $result=$db->query($sql); $sth = $db->prepare($sql); $sth->execute(); if(is_bool($result)) return $result; if($type==1) while($a = $sth->fetch(PDO::FETCH_ASSOC)) $data[]=$a; elseif($type==2) while($a = $sth->fetch(PDO::FETCH_BOTH)) $data[]=$a; if($data) return $data; else return NULL; } </code>
오류 메시지는 다음과 같습니다.
<code>Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 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 '@gmail.com' at line 1' in D:\phpStudy\WWW\core\mysql\drivers\PDO.php:61 Stack trace: #0 D:\phpStudy\WWW\core\mysql\drivers\PDO.php(61): PDO->query('SELECT * FROM u...') #1 D:\phpStudy\WWW\core\login.php(105): DB_PDO->getData('SELECT * FROM u...') #2 {main} thrown in D:\phpStudy\WWW\core\mysql\drivers\PDO.php on line 61</code>
email
주소
<code class="php"><?php $email=htmlspecialchars($_POST["email"]); if($sql->getData('SELECT * FROM user WHERE email="'.$email.'"')==NULL){ </code>
이것은 SQL 문의 구문 오류입니다. 문자열은 따옴표로 묶어야 합니다.
<code class="php">$pdo->getData("SELECT * FROM `table` WHERE `email` = '{$email}'");</code>
향후 이런 오류가 발생하면 명세서를 인쇄하여 어디에서 잘못되었는지 알 수 있습니다