csv

JJpapa Works

excel vba] csv 저장하기

Public Sub SaveWorksheetsAsCsv() Dim WS As Excel.Worksheet Dim SaveToDirectory As String Dim CurrentWorkbook As String Dim CurrentFormat As Long CurrentWorkbook = ThisWorkbook.FullName CurrentFormat = ThisWorkbook.FileFormat ' Store current details for the workbook SaveToDirectory = "H:\test\" For Each WS In ThisWorkbook.Worksheets WS.SaveAs SaveToDirectory & WS.Name, xlCSV Next Application.DisplayAlerts = False ThisWorkbook.SaveAs…

JJpapa Works

PHP – CSV파일 업로드

write.php <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>CSV 파일 올리기</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> body, td, a { font-size:12px; font-family:"돋움"; } img { border:0; } .hp_div { width:900px; padding:0 0 0 200px; } .hp_div1 { font-family:"돋움"; font-size:11px; float:left; width:150px; height:20px; padding:5px 0 0 0; text-align:center;…