반응형 IT창고/PHP17 코드이그나이터 snoopy 라이브러리 사용 방법 1. https://sourceforge.net/projects/snoopy/ 해당 URL 에서 다운로드 2. CodeIgniter application/library 폴더에, Snoopy.php 로 이름변경 후 추가 3. $this->load->library('snoopy'); 4. $this->snoopy->fetch('https://naver.com'); 5. $data = $this->snoopy->results; 2023. 2. 8. checkbox array jquery ajax html, php 코드 Select your favorite fruits: Apple Banana Mango Grapes Submit $(document).ready(function() { $("#submit-button").click(function() { var selectedFruits = []; $("input[name='fruits']:checked").each(function() { selectedFruits.push($(this).val()); }); $.ajax({ type: "POST", url: "process-fruits.php", data: {fruits: selectedFruits}, success: function(response) { $("#response").html(response); } }); .. 2023. 2. 8. CodeIgniter DB update // Load the database library $this->load->database(); // Set the data to be updated $data = array( 'column1' => 'value1', 'column2' => 'value2', 'column3' => 'value3' ); // Set the conditions for the update $this->db->where('id', $id); // Perform the update $this->db->update('table_name', $data); 2023. 2. 8. php slack 비공개 채널에 post message curl 1. 비공개 채널에, 글을 게시할 Bot 을 추가 한다. 2023. 2. 8. 이전 1 2 3 4 5 다음 반응형