<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>유토피아</title>
    <link>https://darkcity1.tistory.com/</link>
    <description>다시 초심으로 돌아가서 열심히 하자.</description>
    <language>ko</language>
    <pubDate>Fri, 10 Apr 2026 12:51:46 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>Youtopia</managingEditor>
    <item>
      <title>[vbs] 특정일이 지나면 파일 지워주는 소스</title>
      <link>https://darkcity1.tistory.com/37</link>
      <description>&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;시스템팀에서 요청한 적이 있어서 만들어 보았습니다.&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;IIS의 로그를 지우는 내용입니다.&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;소스만 보셔도 다들 아실 것 같아 소스만 넣었습니다.&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;중간중간에 주석이 있기도 합니다.&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;저도 여기저기서 퍼와서 만든겁니다.&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;기능 - 특정일이 지나면 지정된 폴더의 파일과 그 폴더의 서브폴더들의 파일들까지 삭제합니다.&lt;/p&gt;&lt;p style=&quot;text-align: left; clear: none; float: none;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;그리고 시작시간과 지워진 파일의 이름과 경로 그리고 종료일을 만들어 파일로 저장합니다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 632px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/02751E4951282F0204&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F02751E4951282F0204&quot; width=&quot;632&quot; height=&quot;786&quot; filename=&quot;사용자 지정 1.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;소스 - OldFileDelete.vbs&lt;/p&gt;&lt;p&gt;&lt;p&gt;Option Explicit&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Const strRootPath = &quot;C:\inetpub\logs\LogFiles\&quot; ' 삭제할 파일이 들어 있는 디렉토리&lt;/p&gt;&lt;p&gt;Const nDays = 0 '초과일수 : 2일 경과한 파일 삭제&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Dim oLog, LogPath, LogFile&lt;/p&gt;&lt;p&gt;Dim oFSO, oFolder, oSubFolder, oFile&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Set oFSO = CreateObject(&quot;Scripting.FileSystemObject&quot;)&lt;/p&gt;&lt;p&gt;Set oFolder = oFSO.GetFolder(strRootPath)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;'파일 생성&lt;/p&gt;&lt;p&gt;LogPath = &quot;C:\test\&quot;&lt;/p&gt;&lt;p&gt;LogFile = Int(Now()) &amp;amp; &quot;.txt&quot;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;If Not oFSO.FolderExists(LogPath) Then&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;oFSO.CreateFolder(LogPath)&lt;/p&gt;&lt;p&gt;End If&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Set oLog = oFSO.CreateTextFile(LogPath &amp;amp; LogFile, true)&lt;/p&gt;&lt;p&gt;oLog.WriteLine(&quot;시작일 - &quot; &amp;amp; Now())&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;' 지정한 루트 디렉토리의 파일 삭제&lt;/p&gt;&lt;p&gt;For Each oFile In oFolder.Files&lt;/p&gt;&lt;p&gt;&amp;nbsp;If Int(Now() - oFile.DateLastAccessed) &amp;gt;= nDays Then&lt;/p&gt;&lt;p&gt;' &amp;nbsp;WScript.Echo oFile.Name &amp;nbsp;&amp;amp; &quot; Deleting&quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp; oLog.WriteLine(&quot;파일명 - &quot; &amp;amp; oFile.Name &amp;amp; &quot;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;경로 - &quot; &amp;amp; oFolder)&lt;/p&gt;&lt;p&gt;&amp;nbsp; oFile.Delete&lt;/p&gt;&lt;p&gt;&amp;nbsp;End If&lt;/p&gt;&lt;p&gt;Next&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;' 지정한 루트 디렉토리에 포함된 서브 디렉토리의 파일 삭제&lt;/p&gt;&lt;p&gt;For Each oSubFolder In oFolder.SubFolders&lt;/p&gt;&lt;p&gt;' WScript.Echo oFolder.name &amp;amp; &quot; ??&quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp;For Each oFile In oSubFolder.Files&lt;/p&gt;&lt;p&gt;&amp;nbsp; If Int(Now() - oFile.DateLastAccessed) &amp;gt;= nDays Then&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;oLog.WriteLine(&quot;파일명 - &quot; &amp;amp; oFile.Name &amp;amp; &quot;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;경로 - &quot; &amp;amp; oSubFolder)&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp;oFile.Delete&lt;/p&gt;&lt;p&gt;' &amp;nbsp; WScript.Echo oFile.Name &amp;nbsp;&amp;amp; &quot; 'Deleted'&quot;&lt;/p&gt;&lt;p&gt;&amp;nbsp; End If&lt;/p&gt;&lt;p&gt;&amp;nbsp;Next&lt;/p&gt;&lt;p&gt;Next&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;oLog.WriteLine(&quot;종료일 - &quot; &amp;amp; Now())&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Set oLog = Nothing&lt;/p&gt;&lt;/p&gt;</description>
      <category>WEB/ASP</category>
      <category>asp</category>
      <category>asp 파일 만들기</category>
      <category>asp 파일 삭제</category>
      <category>VBS</category>
      <category>vbs 파일 만들기</category>
      <category>vbs 파일삭제</category>
      <category>VBScript</category>
      <category>파일 만들기</category>
      <category>파일 삭제</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/37</guid>
      <comments>https://darkcity1.tistory.com/37#entry37comment</comments>
      <pubDate>Sat, 23 Feb 2013 11:56:11 +0900</pubDate>
    </item>
    <item>
      <title>ASP와 VBS에 대한 이해와 차이</title>
      <link>https://darkcity1.tistory.com/36</link>
      <description>&lt;p&gt;안녕하세요.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;회사에서 특정 폴더의 파일을 지울 수 있도록 해달라는 말을 듣고,&lt;/p&gt;&lt;p&gt;vbs로 만들기&amp;nbsp;시작했습니다.&lt;/p&gt;&lt;p&gt;이 &amp;nbsp;소스는 올리도록 하겠습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;저는 처음에 asp부터 해서 vbs는 잘 몰랐습니다.&lt;/p&gt;&lt;p&gt;그러다가 vbs를 하다가 &amp;nbsp;알게 된 사실.&lt;/p&gt;&lt;p&gt;이런건 사실 부끄러운 일이지만 만들기에만 바쁜 사회에서&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;흔한 현상이기도 하겠지만,&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;이런 것에 대해 궁금한 분들도 있을 것 같아 올립니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;b&gt;- 결론 -&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;asp는 MS의 Server-Side 스크립팅 기술을 지원하는 것이지 &amp;nbsp;언어가 아닙니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;asp안에서 언어로 vbscript를 쓸 수도 있고, jscript를 쓸 수도 있습니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;vbs는 vbscript로 만든 스크립트를 저장하는 파일의 확장자명입니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;서버에서 뿐만 아니라 로컬에서도 다시 말해 웹서버 없이 MS 운영체제 커맨드라인이나 직접 실행(마우스, 엔터)이 가능합니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;vbscript는 언어, asp는 기술입니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;370&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border: none; border-collapse: collapse; font-family: 돋움; font-size: 12px; width: 370px;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 66px; height: 24px; border: 1px solid rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 169px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;b&gt;ASP&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 134px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;b&gt;VBS&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 66px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;b&gt;구 &amp;nbsp; &amp;nbsp; 분&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 169px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;기술(Server-Side Scripting)&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 134px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;언어(Language)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 66px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;b&gt;실행환경&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 169px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;웹서버&lt;/td&gt;
&lt;td style=&quot;width: 134px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;웹서버, 로컬&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;p style=&quot;text-align: right;&quot;&gt;출처 -&amp;nbsp;&lt;a href=&quot;http://www.taeyo.net/Forum/Content.aspx?TBL=ASP&amp;amp;SEQ=160984&quot; style=&quot;font-size: 9pt; line-height: 1.5;&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;&lt;b&gt;http://www.taeyo.net/Forum/Content.aspx?TBL=ASP&amp;amp;SEQ=160984&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <category>WEB/ASP</category>
      <category>asp</category>
      <category>asp vbs 차이점</category>
      <category>VBS</category>
      <category>VBScript</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/36</guid>
      <comments>https://darkcity1.tistory.com/36#entry36comment</comments>
      <pubDate>Fri, 22 Feb 2013 13:52:47 +0900</pubDate>
    </item>
    <item>
      <title>PHP 문자열 길이 strlen</title>
      <link>https://darkcity1.tistory.com/35</link>
      <description>&lt;p&gt;PHP에서 문자열의 길이를 측정하는 strlen(String Length)에 대해 알아보겠습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;문자열 구하는 함수&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;strlen&lt;/span&gt;&lt;/b&gt; - &lt;b&gt;byte 단위&lt;/b&gt; 문자열 길이 리턴&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;mb_strlen&lt;/span&gt;&lt;/b&gt; - &lt;b&gt;charset&amp;nbsp;&lt;/b&gt;에 따라 문자열 길이 리턴&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;* 중요&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;한글은 2byte, 영문이나 기호는 1byte&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;예제)&lt;/b&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;664&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border:none;border-collapse:collapse;;font-family:돋움;font-size:12px&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 92px; height: 88px; border: 1px solid rgb(204, 204, 204);&quot;&gt;&amp;nbsp;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;strlen&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;
&lt;td style=&quot;width: 571px; height: 88px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&amp;nbsp;$str = &quot;Hello&quot;;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&lt;span style=&quot;color: rgb(65, 116, 217);&quot;&gt;&amp;nbsp;echo&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;strlen($str);&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 92px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;b&gt;mb_strlen&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;
&lt;td style=&quot;width: 571px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;mb_strlen(&quot;문장&quot;, &quot;CP949&quot;)&lt;br /&gt;&amp;nbsp;mb_strlen(&quot;문장&quot;, &quot;UTF-8&quot;)&lt;br /&gt;&amp;nbsp;mb_strlen(&quot;문장&quot;, &quot;EUC-KR&quot;)&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;한글 사용시에 mb_strlen을 사용합니다.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;그리고 환경마다 길이의 다르니 본인의 환경에 맞춰서 사용하세요.&lt;/p&gt;</description>
      <category>WEB/PHP</category>
      <category>mb_strlen</category>
      <category>PHP</category>
      <category>php 문자열</category>
      <category>php 문자열 길이</category>
      <category>strlen</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/35</guid>
      <comments>https://darkcity1.tistory.com/35#entry35comment</comments>
      <pubDate>Thu, 21 Feb 2013 22:23:06 +0900</pubDate>
    </item>
    <item>
      <title>PHP란? PHP는 무엇인가?</title>
      <link>https://darkcity1.tistory.com/34</link>
      <description>&lt;p&gt;&lt;b&gt;PHP는 무엇인가요?&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;PHP는&lt;span style=&quot;color: rgb(62, 62, 62); font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size:10pt; line-height: 23px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: rgb(62, 62, 62); font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size:10pt; line-height: 23px;&quot;&gt;&lt;b&gt;Hypertext Preprocessor&lt;/b&gt;의 약자입니다. 이것은 지금의 약자의 의미입니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;PHP는 &lt;b&gt;1994년 Rasmus Lerdorf의 개인 프로젝트에 의해 고안&lt;/b&gt;되었습니다.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;&lt;b&gt;원래 PHP는&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/font&gt;&lt;span style=&quot;color: rgb(0, 0, 0); font-family: Gulim, AppleGothic; font-size: 13px; line-height: 22px;&quot;&gt;&lt;b&gt;Personal Home Page&lt;/b&gt;의 약자였습니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;초기 PHP는 간단한 몇 가지 Perl 스크립트로 만들어진 것이였는데,&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;span style=&quot;color: rgb(62, 62, 62); font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size:10pt; line-height: 23px;&quot;&gt;Rasmus Lerdorf는 이것으로 홈페이지에 오는&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(62, 62, 62); font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size:10pt; line-height: 23px;&quot;&gt;사용자의 자취를 추적하는데 사용했습니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;그 이후 스크립트 엔진으로 발전했고, 각 종 Form 기능이 추가되어 PHP/FI가 되었습니다.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;PHP가 점점 인기를 얻어감에 따라 개발자들이 여기서 사용할 API를 만들었고 이렇게 PHP3가 탄생하였습니다.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;PHP3는&amp;nbsp;6명의 개발자가 개발한&amp;nbsp;PHP 3.0 입니다.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;PHP3은 1998년 6월에 나왔습니다.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;PHP3에서 몇 가지 기능이 더 개선되고 스크립트 해석기가 완전히 새로 제작돼 훨씬 빨라진 PHP4(Zend)가 나왔습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;PHP는 쉽게 만들 수 있고, 배울 수 있어서 초보자가 시작하기에 좋은 프로그래밍 언어라고 생각합니다.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;그리고 무료입니다.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;PHP는 Server-Side 스크립트 언어입니다.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;즉, &lt;b&gt;서버에서 실행되며 HTML을 포함한 스크립트 언어&lt;/b&gt;입니다.&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font color=&quot;#3e3e3e&quot; face=&quot;돋움, Dotum, AppleGothic, sans-serif&quot; size=&quot;2&quot;&gt;&lt;span style=&quot;line-height: 23px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;</description>
      <category>WEB/PHP</category>
      <category>PHP</category>
      <category>php 연사</category>
      <category>php 의미</category>
      <category>php란</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/34</guid>
      <comments>https://darkcity1.tistory.com/34#entry34comment</comments>
      <pubDate>Thu, 21 Feb 2013 21:52:23 +0900</pubDate>
    </item>
    <item>
      <title>input 한글 영문만 가능</title>
      <link>https://darkcity1.tistory.com/33</link>
      <description>&lt;p&gt;input 태그에 한글, 영문만 입력이 가능하도록 만들 수 있습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;아래 표가 이해가 잘 안가신다면 밑에 표를 참고하세요.&lt;/p&gt;&lt;p&gt;&lt;p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;405&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border: none; border-collapse: collapse; font-family: 돋움; font-size: 12px; width: 405px;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 118px; height: 24px; border: 1px solid rgb(204, 204, 204);&quot;&gt;&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;한글과 영문&amp;nbsp;가능&lt;/span&gt;&lt;/td&gt;
&lt;td style=&quot;width: 286px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;&amp;lt;input type='text' style=&quot;ime-mode:auto;&quot;&amp;gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 118px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;영문만 가능&lt;/td&gt;
&lt;td style=&quot;width: 286px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;&amp;lt;input type='text' style=&quot;ime-mode:disabled;&quot;&amp;gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 118px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;한글 우선, 영문&lt;/td&gt;
&lt;td style=&quot;width: 286px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;&amp;lt;input type='text' style=&quot;ime-mode:active;&quot;&amp;gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 118px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;영문 우선, 한글&lt;/td&gt;
&lt;td style=&quot;width: 286px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204);&quot;&gt;&amp;nbsp;&amp;lt;input type='text' style=&quot;ime-mode:inactive;&quot;&amp;gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;CSS에서 추가시켜서 할 수도 있습니다.&lt;/p&gt;&lt;p&gt;Property 속성은 HTML에서도 적용이 됩니다.&lt;/p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;456&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border: none; border-collapse: collapse; font-family: 돋움; font-size: 12px; width: 456px;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 116px; height: 24px; border: 1px solid rgb(204, 204, 204);&quot;&gt;&amp;nbsp;CSS 문법&amp;nbsp;&lt;/td&gt;
&lt;td style=&quot;width: 339px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&amp;nbsp;{ ime-mode: &lt;b&gt;Property&lt;/b&gt; }&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width: 116px; height: 24px; border: 1px solid rgb(204, 204, 204);&quot; rowspan=&quot;1&quot;&gt;&amp;nbsp;Property&lt;/td&gt;&lt;td style=&quot;width: 339px; height: 24px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); border-right-width: 1px; border-right-style: solid; border-right-color: rgb(204, 204, 204); border-top-width: 1px; border-top-style: solid; border-top-color: rgb(204, 204, 204);&quot; rowspan=&quot;1&quot;&gt;&amp;nbsp;&lt;span style=&quot;color: rgb(0, 0, 0); font-family: verdana; font-size: 11px; line-height: 17px;&quot;&gt;auto : &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;b&gt;기본값&lt;/b&gt;&lt;/span&gt;, IME에 영향을 주지 않음&lt;/span&gt;&lt;p style=&quot;margin: 0px; padding: 0px; font-family: verdana; font-size: 11px; color: rgb(0, 0, 0); line-height: 17px;&quot;&gt;&amp;nbsp;active : 초기 입력 &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;한글&lt;/span&gt;&lt;/b&gt; 설정, &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;한/영 전환 가능&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; padding: 0px; font-family: verdana; font-size: 11px; color: rgb(0, 0, 0); line-height: 17px;&quot;&gt;&amp;nbsp;inactive : 초기 입력 &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;영문&lt;/span&gt;&lt;/b&gt; 설정, &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;한/영 전환 가능&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; padding: 0px; font-family: verdana; font-size: 11px; color: rgb(0, 0, 0); line-height: 17px;&quot;&gt;&amp;nbsp;disabled : 초기 입력 &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;영문&lt;/span&gt;&lt;/b&gt; 설정, &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;영어만 가능&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;CSS 실제 사용방법&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;#Kinput { ime-mode: active }&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;input type=&quot;text&quot; id=&quot;Kinput&quot; name=&quot;Kinput&quot; /&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;</description>
      <category>WEB/HTML/JavaScript</category>
      <category>INPUT</category>
      <category>input 영어</category>
      <category>input 한글</category>
      <category>javascript input</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/33</guid>
      <comments>https://darkcity1.tistory.com/33#entry33comment</comments>
      <pubDate>Mon, 18 Feb 2013 19:49:44 +0900</pubDate>
    </item>
    <item>
      <title>숫자만 입력 input</title>
      <link>https://darkcity1.tistory.com/32</link>
      <description>&lt;p&gt;웹상에서 전화번호, 나이 등 &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;숫자만 받을 필요가 있을 때&lt;/span&gt;&lt;/b&gt;가 있으시죠?&lt;/p&gt;
&lt;p&gt;그럴 때 다른 거창한 언어 필요없이 &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;자바스크립트&lt;/span&gt;&lt;/b&gt; 하나만으로 충분합니다.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;우선 필요한 함수를 넣겠습니다.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;pre class=&quot;brush: javascript&quot;&gt;// 숫자만 입력받는다.
function OnlyNumber() {
	var code = window.event.keyCode; 

	if ((code &amp;gt; 34 &amp;amp;&amp;amp; code &amp;lt; 41) || (code &amp;gt; 47 &amp;amp;&amp;amp; code &amp;lt; 58) || (code &amp;gt; 95 &amp;amp;&amp;amp; code &amp;lt; 106) || code == 8 || code == 9 || code == 13 || code == 46) {
		window.event.returnValue = true;
		return;
	}
			
	window.event.returnValue = false;
}&lt;/pre&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;input 태그에 이런식으로 넣어 줍니다.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;pre class=&quot;brush: javascript&quot;&gt;&amp;lt;input type=&quot;text&quot; id=&quot;Tel1&quot; name=&quot;Tel1&quot; size=&quot;4&quot; onKeyDown=&quot;OnlyNumber()&quot; style='IME-MODE: disabled' /&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;IME-MODE 참고 자료&lt;/span&gt;&lt;/b&gt; - &lt;a href=&quot;http://darkcity1.tistory.com/33&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://darkcity1.tistory.com/33&lt;/a&gt;&lt;/p&gt;</description>
      <category>WEB/HTML/JavaScript</category>
      <category>input 숫자</category>
      <category>onlynumber</category>
      <category>숫자</category>
      <category>자바스크립트 숫자</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/32</guid>
      <comments>https://darkcity1.tistory.com/32#entry32comment</comments>
      <pubDate>Mon, 18 Feb 2013 19:10:55 +0900</pubDate>
    </item>
    <item>
      <title>[MS-SQL] 컬럼 데이터타입 변경</title>
      <link>https://darkcity1.tistory.com/31</link>
      <description>&lt;p&gt;안녕하세요.&lt;/p&gt;&lt;p&gt;이번에는 &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;테이블의 데이터 형식을 바꾸는 명령&lt;/span&gt;&lt;/b&gt;을 해보겠습니다.&lt;/p&gt;&lt;p&gt;&lt;b&gt;데이터 형식&lt;/b&gt; 또는 &lt;b&gt;데이터 &amp;nbsp;타입&lt;/b&gt;이라고도 합니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0); font-size: 11pt;&quot;&gt;결론&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;428&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border: none; border-collapse: collapse; font-family: 돋움; font-size: 12px; width: 428px;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 427px; height: 39px; border: 1px solid rgb(204, 204, 204);&quot;&gt;&lt;p&gt;&lt;b style=&quot;color: rgb(99, 99, 99); font-family: 돋움, Dotum, AppleGothic, sans-serif; font-size: 9pt; line-height: 1.5; margin: 0px; padding: 0px; border: 0px;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; font-size: 10pt;&quot;&gt;&lt;span id=&quot;aeaoofnhgocdbnbeljkmbjdmhbcokfdb-mousedown&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; color: rgb(189, 189, 189);&quot;&gt;ALTER TABLE&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; color: rgb(47, 157, 39);&quot;&gt;테이블명&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; color: rgb(189, 189, 189);&quot;&gt;ALTER COLUMN&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; color: rgb(47, 157, 39);&quot;&gt;컬럼명 데이터타입&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; padding: 0px; border: 0px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(99, 99, 99);&quot;&gt;&lt;b style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; font-size: 10pt;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; color: rgb(189, 189, 189);&quot;&gt;ALTER TABLE&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; color: rgb(47, 157, 39);&quot;&gt;board&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; color: rgb(189, 189, 189);&quot;&gt;ALTER COLUMN&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; color: rgb(47, 157, 39);&quot;&gt;intSeq&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; border: 0px; line-height: 1.5; color: rgb(189, 189, 189);&quot;&gt;SMALLINT&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;이해&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;아래 처럼 기존의 테이블이 있습니다.&lt;/p&gt;&lt;p&gt;첫 번째 행의 데이터 &amp;nbsp;타입을 &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;SMALLINT&lt;/span&gt;&lt;/b&gt;로 변경해 보겠습니다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 337px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/276AAD3A5119A6F631&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F276AAD3A5119A6F631&quot; width=&quot;337&quot; height=&quot;225&quot; filename=&quot;사용자 지정 1.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;바뀐 모습입니다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 337px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/230B403A5119A6F70A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F230B403A5119A6F70A&quot; width=&quot;337&quot; height=&quot;225&quot; filename=&quot;사용자 지정 2.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;그러면 이제 어떻게 하는지 보여드리겠습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;&lt;span style=&quot;color: rgb(189, 189, 189);&quot;&gt;ALTER TABLE&lt;/span&gt; &lt;span style=&quot;color: rgb(47, 157, 39);&quot;&gt;테이블명 &lt;/span&gt;&lt;span style=&quot;color: rgb(189, 189, 189);&quot;&gt;ALTER COLUMN&lt;/span&gt; &lt;span style=&quot;color: rgb(47, 157, 39);&quot;&gt;컬럼명 데이터타입&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;&lt;span style=&quot;color: rgb(189, 189, 189);&quot;&gt;ALTER TABLE&lt;/span&gt; &lt;span style=&quot;color: rgb(47, 157, 39);&quot;&gt;board &lt;/span&gt;&lt;span style=&quot;color: rgb(189, 189, 189);&quot;&gt;ALTER COLUMN&lt;/span&gt; &lt;span style=&quot;color: rgb(47, 157, 39);&quot;&gt;intSeq &lt;/span&gt;&lt;span style=&quot;color: rgb(189, 189, 189);&quot;&gt;SMALLINT&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description>
      <category>DataBase/MS-SQL</category>
      <category>ALTER</category>
      <category>ALTER COLUMN</category>
      <category>ALTER TABLE</category>
      <category>Column</category>
      <category>MS-SQL</category>
      <category>MSSQL</category>
      <category>table</category>
      <category>데이터베이스</category>
      <category>데이터타입 변경</category>
      <category>데이터형식 변경</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/31</guid>
      <comments>https://darkcity1.tistory.com/31#entry31comment</comments>
      <pubDate>Tue, 12 Feb 2013 11:24:29 +0900</pubDate>
    </item>
    <item>
      <title>Illegal assignment: 'i'</title>
      <link>https://darkcity1.tistory.com/30</link>
      <description>&lt;p&gt;ASP에서 간혹 'i'라는 변수에 대해&amp;nbsp;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;에러가 발생하는 경우가 있습니다.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;257&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border: none; border-collapse: collapse; font-family: 돋움; font-size: 12px; width: 257px;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 256px; height: 24px; border: 1px solid rgb(204, 204, 204);&quot;&gt;Microsoft VBScript runtime error '800a01f5'&lt;br /&gt;&lt;br /&gt;Illegal assignment: 'i'&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;에러의 문구야 다를지 몰라도 'i'라는 변수에 대한 에러일 것입니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;그럴때는 혹시 해당 페이지에 md5.asp라는 파일이 include가 되었거나, 페이지내에 들어있는 것이&lt;/p&gt;&lt;p&gt;원인이 될 수가 있습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;이때는 'i'를 다른 변수로 지정해 주세요.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>WEB/ASP</category>
      <category>800a01f5</category>
      <category>asp</category>
      <category>i</category>
      <category>Illegal assignment</category>
      <category>MD5</category>
      <category>md5.asp</category>
      <category>Microsoft VBScript runtime error '800a01f5'</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/30</guid>
      <comments>https://darkcity1.tistory.com/30#entry30comment</comments>
      <pubDate>Tue, 12 Feb 2013 09:41:49 +0900</pubDate>
    </item>
    <item>
      <title>Windows 7 Ultimate K 설치</title>
      <link>https://darkcity1.tistory.com/29</link>
      <description>&lt;p&gt;&lt;b&gt;Windows 7 Ultimate K 설치&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;VMware Workstation에서 설치했습니다.&lt;/p&gt;&lt;p&gt;앞에 단계는 다들 아시리라 믿고 건너 띄웠습니다.&lt;/p&gt;&lt;p&gt;혹시 잘 모르시는 분들은 글 남겨주시면 작성하도록 하겠습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;아래와 같이 나오는데 웬만하면 설정을 바꾸지 않고, &lt;b&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); color: rgb(255, 0, 0);&quot;&gt;[다음]&lt;/span&gt;&lt;/b&gt;을 눌러주세요.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 640px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/14543D455118F0F819&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F14543D455118F0F819&quot; width=&quot;640&quot; height=&quot;478&quot; filename=&quot;사용자 지정 1.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;[지금 설치]&lt;/span&gt;&lt;/b&gt;를 누르세요.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 640px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/275D10455118F0F809&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F275D10455118F0F809&quot; width=&quot;640&quot; height=&quot;479&quot; filename=&quot;사용자 지정 2.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;[동의함]&lt;/span&gt;&lt;/b&gt;을 누르세요.&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;[다음]&lt;/span&gt;&lt;/b&gt;이 활성화 되면 누르세요.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 640px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/115294455118F0F81B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F115294455118F0F81B&quot; width=&quot;640&quot; height=&quot;478&quot; filename=&quot;사용자 지정 3.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;[사용자 지정]&lt;/span&gt;&lt;/b&gt;을 누르세요.&lt;/p&gt;&lt;p&gt;기존의 OS에 대해서 업그레이드를 하시면 위에 부분을 누르시지만,&lt;/p&gt;&lt;p&gt;새로 설치일 경우 아래를 누릅니다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 640px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/26581B455118F0F910&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F26581B455118F0F910&quot; width=&quot;640&quot; height=&quot;478&quot; filename=&quot;사용자 지정 4.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;[드라이브 옵션]&lt;/span&gt;&lt;/b&gt;을 누르시면 새로운 드라이브의 추가나 포맷을 하실 수 있습니다.&lt;/p&gt;&lt;p&gt;그 외에는 &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;[다음]&lt;/span&gt;&lt;/b&gt;을 누르세요.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 640px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/245878455118F0F912&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F245878455118F0F912&quot; width=&quot;640&quot; height=&quot;479&quot; filename=&quot;사용자 지정 5.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;이제 아래와 같이 설치가 시작됩니다.&lt;/p&gt;&lt;p&gt;설치가 완료된 뒤에는 재부팅이 이루어 집니다.&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 640px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/274F1A455118F0FA1E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F274F1A455118F0FA1E&quot; width=&quot;640&quot; height=&quot;480&quot; filename=&quot;사용자 지정 6.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;이 이후에는 사용자 이름, 암호, 시간, 네트워크 설정 등이 이루어 집니다.&lt;/p&gt;&lt;p&gt;그리고 CD-KEY는 있으시겠지요?&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>Windows/Windows 7</category>
      <category>Windows</category>
      <category>windows 7 setup</category>
      <category>Windows setup</category>
      <category>윈도우 7 설치</category>
      <category>윈도우 설치</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/29</guid>
      <comments>https://darkcity1.tistory.com/29#entry29comment</comments>
      <pubDate>Mon, 11 Feb 2013 22:36:13 +0900</pubDate>
    </item>
    <item>
      <title>글 소스라인 표시하기 Tistory SyntaxHighlighter</title>
      <link>https://darkcity1.tistory.com/28</link>
      <description>&lt;p&gt;&lt;b&gt;SyntaxHighlighter&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;인터넷의 사이트에 올라온 소스를 보다보면 보기 좋게 정렬된 경우가 있습니다.&lt;/p&gt;&lt;p&gt;아래와 같이요.&lt;/p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;702&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border: none; border-collapse: collapse; font-family: 돋움; font-size: 12px; width: 702px;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 701px; height: 24px; border: 1px solid rgb(204, 204, 204); background-color: rgb(213, 213, 213);&quot;&gt;&amp;nbsp;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 700px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/1134274851052CF922&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F1134274851052CF922&quot; width=&quot;700&quot; height=&quot;291&quot; filename=&quot;사용자 지정 1.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&lt;b&gt;출처&lt;/b&gt; : &lt;a href=&quot;http://alexgorbatchev.com/SyntaxHighlighter/manual/installation.html&quot; target=&quot;_blank&quot; class=&quot;tx-link&quot;&gt;http://alexgorbatchev.com/SyntaxHighlighter/manual/installation.html&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;차이는 있지만 파일 자체를 개인의 서버에 올려서 사용하거나 소스 몇 줄을 추가해도 이용이 가능하다고 합니다.&lt;/p&gt;&lt;p&gt;파일을 이용하지 않고, SyntaxHighlighter의 서비스를 이용하는 방법이 있습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;트래픽의 제한이 있다고는 하지만 아직 제 블로그는 방문자수도 적고 이용하는 소스도 없으니 한번 넣어보도록 하겠습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;관리자 페이지로 들어가셔야 합니다. 로그인을 하셔야 합니다.&lt;/p&gt;&lt;p&gt;그리고 꾸미기에서 HTML/CSS 편집 skin.html 부분에 &amp;lt;/body&amp;gt; 위에 넣어줍니다.&lt;/p&gt;&lt;p&gt;하지만 말로만 해서는 어려우니 이미지로 보여드리겠습니다.&lt;/p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;664&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border:none;border-collapse:collapse;;font-family:돋움;font-size:12px&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width: 664px; height: 24px; border: 1px solid rgb(204, 204, 204); background-color: rgb(213, 213, 213);&quot;&gt;&amp;nbsp;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 700px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2379CE47510530221E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2379CE47510530221E&quot; width=&quot;700&quot; height=&quot;361&quot; filename=&quot;사용자 지정 2.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;위의 코드 부분입니다.&lt;/p&gt;&lt;p&gt;복사하셔서 같은 위치에 넣어주시면 됩니다.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre class=&quot;brush:java*&amp;gt;
&amp;lt;!-- SyntaxHighlighter 시작 (2012.04.20) --&amp;gt;
&amp;lt;link rel=&quot; stylesheet&quot;=&quot;&quot; type=&quot;text/css&quot; href=&quot;http://alexgorbatchev.com/pub/sh/current/styles/shCoreEclipse.css&quot;&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushAS3.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushBash.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCpp.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCSharp.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushDelphi.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushDiff.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushGroovy.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJava.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJavaFX.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPerl.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPhp.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPlain.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPowerShell.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPython.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushRuby.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushScala.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushSql.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushVb.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushXml.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shLegacy.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
     SyntaxHighlighter.config.stripBrs = true;
     SyntaxHighlighter.all();
&lt;/script&gt;
&lt;!--SyntaxHighlighter 끝 --&gt;
&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;이제 관리자 모드에서 설정이 끝나셨으면 글을 쓰실 때, HTML모드로 전환하여 아래 소스를 넣으신 뒤에 소스 코드를 넣어줍니다.&lt;/p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; width=&quot;664&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;border:none;border-collapse:collapse;;font-family:돋움;font-size:12px&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width:664;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;border-left:1px solid #ccc;;&quot;&gt;&lt;p&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(0, 0, 0); font-family: LexiSaebomRWeb; font-size: 13px; line-height: 19px; background-color: rgb(255, 255, 255);&quot;&gt;&amp;lt;pre class=&quot;brush: java&quot;&amp;gt;&lt;/span&gt;&lt;br style=&quot;color: rgb(102, 102, 102); font-family: LexiSaebomRWeb; font-size: 13px; line-height: 19px; background-color: rgb(231, 253, 181);&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;코드&lt;/span&gt;&lt;br style=&quot;color: rgb(102, 102, 102); font-family: LexiSaebomRWeb; font-size: 13px; line-height: 19px; background-color: rgb(231, 253, 181);&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0); font-family: LexiSaebomRWeb; font-size: 13px; line-height: 19px; background-color: rgb(255, 255, 255);&quot;&gt;&amp;lt;/pre&amp;gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>LIFE/Tistory</category>
      <category>SyntaxHighlighter</category>
      <category>Tistory</category>
      <category>글 내용에 소스 라인 표시</category>
      <category>신택스하이라이터</category>
      <category>티스토리</category>
      <author>Youtopia</author>
      <guid isPermaLink="true">https://darkcity1.tistory.com/28</guid>
      <comments>https://darkcity1.tistory.com/28#entry28comment</comments>
      <pubDate>Sun, 27 Jan 2013 22:54:20 +0900</pubDate>
    </item>
  </channel>
</rss>