MySQL 구문 분석 오류 : 구문 오류, 예기치 않은 '$ result'(T_VARIABLE)
아래 코드를 실행할 때 문제가 발생했습니다. function newUser($email,$pwd,$pwd2,$firstname,$surname,$isAdmin=0){ $email = $this->verify('Email',$email,10,40); $pwd = $this->verify('Password',$pwd,6,20); $pwd2 = $this->verify('Password',$pwd2,6,20); $firstname = $this->strToTitle($this->verify('Name',$firstname,2,40)); $surname = $this->strToTitle($this->verify('Title',$surname,2,40)); if ($pwd != $pwd2) return -1; ..
2021. 1. 21.