• same table copy record

    insert into hansung_tedlee2.khs_vod select * from hansung_tedlee2.khs_vod where khs_no = number;

  • 싱크 자동 프로그램

    https://freefilesync.org/download.php

  • 치약 메모

    https://www.curaprox.co.kr/goods/goods_view.php?goodsNo=1000000126&mtn=1%5E%7C%5EBest+of+Product%5E%7C%5En

  • AJAX를 사용하여 파일 업로드 하기

    <?php include_once(‘./_common.php’); include G5_PATH.’/header.php’; ?> <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <title>AJAX를 사용하여 파일 업로드 하기</title> </head> <body> <script src=”https://code.jquery.com/jquery-latest.js”></script> <script>     function file_frm_submit(frm) {         var fileCheck = frm.upload_file.value;         if(!fileCheck) {             alert(“업로드할 파일을 선택하세요.”);             return false;         }         var formData = new FormData(frm);            // 파일전송을 위한 폼데이터 객체 생성             formData.append(“message”, “ajax로 파일 전송하기”);         formData.append(“file”, jQuery(“#upload_file”)[0].files[0]);         $.ajax({                 url:…