목록PHP (2)
메모장
CodeIgniter insert id 조회
A table에 insert하고 insert한 id값을 B table에도 insert 해야될 때 public function insert_id() { return mysql_insert_id($this->conn_id); } id = $this->db->insert_id();
PHP
2022. 4. 28. 10:08
PhpStorm 서버에 반영 하는 법
1. Tools -> Deployment -> Configuration... 2. Host, User name, Password 작성 후 반드시 Test Connection 클릭해서 Successfully connected 확인3. Web server URL 작성 후 OK 누르지 않고 Mappings 탭으로 이동 4. Local path와 Deployment path 같도록 작성 후 OK 5. 반영 할 폴더나 파일에서 우클릭 후 Deployment -> Sync with Deployed to server... 6. 반영 내용 확인 후 반영
PHP
2022. 2. 17. 15:49