si te gusta el blog dale al +1

y siguenos en...

Síguenos en Facebook Síguenos en TwitterSíguenos en FlickrFeedelizate a PdeK

팁 적기

입력 형식:
  • Filtered HTML:
    • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
    • 사용할 수 있는 HTML 태그: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>

      이 사이트에서는 글 내용에 HTML을 사용할 수 있습니다. HTML 전부를 배우는 건 무시무시한 일이 되겠지만 아주 기초적인 HTML "태그" 몇 가지의 사용법을 배우는 건 아주 쉽습니다. 아래 표는 이 사이트에서 사용할 수 있는 각 태그의 예제입니다.

      더 자세한 내용을 알고 싶으면 W3C의 HTML 명세를 보거나, 자주 쓰는 검색 엔진을 이용해서 HTML을 설명하는 기타 사이트를 찾아보도록 하십시오.

      태그 설명이렇게 치면이렇게 됩니다
      다른 페이지로 가는 링크를 만듭니다.<a href="http://www.paelladekimchi.com">Paella de Kimchi</a>Paella de Kimchi
      강조해서<em>강조해서</em>강조해서
      진하게<strong>진하게</strong>진하게
      인용<cite>인용</cite>인용
      프로그램 소스 코드 표시를 위한 코드 모양<code>코드 모양</code>코드 모양
      순서 없는 목록 - 각 항목은 <li>로 시작<ul> <li>첫 번째 항목</li> <li>두 번째 항목</li> </ul>
      • 첫 번째 항목
      • 두 번째 항목
      순서 있는 목록 - 각 항목은 <li>로 시작<ol> <li>첫 번째 항목</li> <li>두 번째 항목</li> </ol>
      1. 첫 번째 항목
      2. 두 번째 항목
      정의 목록은 다른 HTML 목록과 비슷합니다. <dl>로 정의 목록을 시작하고, <dt> 다음에 정의할 단어를, <dd> 다음에 정의 내용을 써주면 됩니다.<dl> <dt>첫 번째 용어</dt> <dd>첫 번째 정의</dd> <dt>두 번째 용어</dt> <dd>두 번째 정의</dd> </dl>
      첫 번째 용어
      첫 번째 정의
      두 번째 용어
      두 번째 정의

      특이한 문자열(string) 대부분은 별 문제 없이 직접 입력할 수 있습니다.

      입력에 문제가 있으면 HTML 문자열(string) 항목을 이용해서 시도해 보십시오. 항목 전체를 보고 싶으면 HTML 항목 페이지를 보면 됩니다. 사용 가능한 문자열(string)에는 다음과 같은 것들이 있습니다.

      문자열(string)에 대한 설명이렇게 치면이렇게 됩니다
      앰퍼샌드&amp;&
      보다 큰&gt;>
      보다 작은&lt;<
      인용 부호&quot;"
    • 커스텀 PHP 코드의 사용법

      커스텀 PHP 코드는 포스트나 블록을 포함한 임의의 타입의 사이트 컨텐츠에 넣을 수가 있습니다. PHP의 경험을 가진 신뢰할 수 있는 유저가 적절히 사용하는 경우에는 포스트나 블록에 PHP 코드를 넣는 것은 강력하고 유연한 기능이지만 부적절하게 사용되었을 경우는 심각하게 안전을 위협하는 사태를 가져옵니다. 또한, 포스트 되는 PHP 코드에 조금이라도 미스가 있으면 사이트를 위태롭게 할 가능성이 있습니다.

      PHP, SQL, Drupal을 정통하고 있지 않는 경우에는 포스트에 커스텀 PHP 코드를 사용하는 것을 피해 주세요. PHP의 안이한 사용은 데이타베이스를 파손시켜 사이트를 조작 불능으로 인해 현저하게 안전성을 해칠 가능성이 있기 때문에 절대로 피해 주세요.

      주의:

      • 저장하기 전에 각 행의 문법, 논리 에러를 잊지 않고 재확인해 주세요.
      • 명령문은 세미콜론(;)으로 올바르게 끝낼 필요가 있습니다.
      • PHP 코드내에서 사용된 글로벌 변수는 스크립트의 실행 후도 그 값을 보관 유지합니다.
      • 폼을 사용하고 싶은 경우에는 Drupal Form API 의 함수를 이해하고 그것을 사용해 주세요.
      • 컨텐츠를 출력하려면 코드중에서printreturn명령을 사용해 주세요.
      • 사이트에서 사용하기 전에 개별의 테스트 스크립트와 샘플 데이타베이스를 사용해서 PHP 코드의 개발과 테스트를 충분히 실시해 주세요.
      • 포스트나 블록에 직접 넣는 것이 아니라 사이트 특유의 모듈이나template.php에 커스텀 PHP 코드를 포함하는 것을 검토해 주세요.
      • PHP 코드를 컨텐츠내에 넣을 수 있는 기능은 PHP 필터 모듈에 의해 제공되고 있는 것을 인식해 주세요. 이 모듈이 비활성화, 삭제되었을 경우에는 포스트나 블록에 삽입된 PHP 코드가 실행되지 않고 그대로 표시되어 버립니다.

      기본예: 단순한 메세지로 방문자를 맞이하는 "Welcome"블록의 작성

      • "Welcome"라고 하는 커스텀 블록을 사이트에 추가해 입력 서식을 "PHP code"(또는 PHP를 지원하는 다른 입력 서식)로 하여 블록의 본문에 아래에 추가해 주세요. (샘플중의 t() 는 문자열을 번역 가능하게 하는 Drupal의 함수입니다.):

        print t('Welcome visitor!  Thank you for visiting. ') ;
        
      • 등록 유저의 이름을 표시하려면 대신에 아래를 사용하는:

        global $user;
        if ($user->uid) {
          print t('Welcome @name!  Thank you for visiting. ', array('@name' => $user->name)) ;
        }
        else {
          print t('Welcome visitor!  Thank you for visiting. ') ;
        }
        

      Drupal.org몇개의 PHP 스니펫의 실제적인 예를 제공하고 있습니다. 또한, 약간의 PHP 경험과 Drupal 시스템의 지식이 있으면 독자적인 PHP 스니펫을 작성할 수가 있습니다.

    • The content of this field will be saved to a file and included on the original page in an iFrame.
    • Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:

      [quote]This is a simple quote.[/quote]
      is displayed as:

      Quote:
      This is a simple quote.

      Additionally, there is an optional attribute which allows quotes to specify the original author.

      [quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
      is displayed as:

      Mr. Drupal wrote:
      This is a quote with an attribution line.

      Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.

      [quote]I think she says it best...
      [quote=Ms. Quotation]This is a quote nested within another quote.[/quote]
      but you can't argue with
      [quote=Ms. Reply]The more quotes, the merrier.
      Just don't get too carried away.[/quote]
      And I have nothing more to say.[/quote]
      is displayed as:

      Quote:
      I think she says it best...
      Ms. Quotation wrote:
      This is a quote nested within another quote.
      but you can't argue with
      Ms. Reply wrote:
      The more quotes, the merrier. Just don't get too carried away.
      And I have nothing more to say.
    • If you include a textual smiley in your post (see chart below), it will be replaced by a graphical smiley.
      Smileys
      SmileyAcronyms
      :party::party:
      :X:X :-X :oups:
      :exmark::exmark:
      :mail::mail:
      :love::love:
      :D:D :-D :lol:
      0:)0:) 0) 0:-) :innocent:
      :hat::hat:
      H)H) H:) H:-) :grade:
      :glasses::glasses:
      :ghost::ghost:
      :|:| :-| :stare:
      >)&gt;) &gt;-) :evil:
      S)S) S) :drunk:
      :davie::davie:
      :crown::crown:
      J)J) J-) :crazy:
      8)8) 8-) :cool:
      $)$) $-) :cash:
      :bigsmile::bigsmile:
      :beer::beer:
      :(:( :-( :sad:
      :arrow::arrow:
      |(|( \\( :angry:
      :):) :-) :smile:
      :~:~ :-~ :puzzled:
      :quest::quest:
      :((:(( :-(( :cry:
      :santa::santa:
      :*:* :-* :sexy:
      :O:O :-O :shock:
      :8):8) :8-) :shy:
      :Sp:Sp :-S) :sick:
      :star::star:
      :steve::steve:
      :sushi::sushi:
      :tired::tired:
      :p:p :-p :tongue:
      ;);) ;-) :wink:
  • Full HTML:
    • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
    • 줄과 단락은 자동으로 인식됩니다. <br /> 줄바꿈, <p> 단락 및 </p> 단락 끝 태그가 자동으로 추가됩니다. 만약 단락이 자동으로 인식되지 않으면 두개의 빈줄을 추가해 주십시오.
    • The content of this field will be saved to a file and included on the original page in an iFrame.
    • 커스텀 PHP 코드의 사용법

      커스텀 PHP 코드는 포스트나 블록을 포함한 임의의 타입의 사이트 컨텐츠에 넣을 수가 있습니다. PHP의 경험을 가진 신뢰할 수 있는 유저가 적절히 사용하는 경우에는 포스트나 블록에 PHP 코드를 넣는 것은 강력하고 유연한 기능이지만 부적절하게 사용되었을 경우는 심각하게 안전을 위협하는 사태를 가져옵니다. 또한, 포스트 되는 PHP 코드에 조금이라도 미스가 있으면 사이트를 위태롭게 할 가능성이 있습니다.

      PHP, SQL, Drupal을 정통하고 있지 않는 경우에는 포스트에 커스텀 PHP 코드를 사용하는 것을 피해 주세요. PHP의 안이한 사용은 데이타베이스를 파손시켜 사이트를 조작 불능으로 인해 현저하게 안전성을 해칠 가능성이 있기 때문에 절대로 피해 주세요.

      주의:

      • 저장하기 전에 각 행의 문법, 논리 에러를 잊지 않고 재확인해 주세요.
      • 명령문은 세미콜론(;)으로 올바르게 끝낼 필요가 있습니다.
      • PHP 코드내에서 사용된 글로벌 변수는 스크립트의 실행 후도 그 값을 보관 유지합니다.
      • 폼을 사용하고 싶은 경우에는 Drupal Form API 의 함수를 이해하고 그것을 사용해 주세요.
      • 컨텐츠를 출력하려면 코드중에서printreturn명령을 사용해 주세요.
      • 사이트에서 사용하기 전에 개별의 테스트 스크립트와 샘플 데이타베이스를 사용해서 PHP 코드의 개발과 테스트를 충분히 실시해 주세요.
      • 포스트나 블록에 직접 넣는 것이 아니라 사이트 특유의 모듈이나template.php에 커스텀 PHP 코드를 포함하는 것을 검토해 주세요.
      • PHP 코드를 컨텐츠내에 넣을 수 있는 기능은 PHP 필터 모듈에 의해 제공되고 있는 것을 인식해 주세요. 이 모듈이 비활성화, 삭제되었을 경우에는 포스트나 블록에 삽입된 PHP 코드가 실행되지 않고 그대로 표시되어 버립니다.

      기본예: 단순한 메세지로 방문자를 맞이하는 "Welcome"블록의 작성

      • "Welcome"라고 하는 커스텀 블록을 사이트에 추가해 입력 서식을 "PHP code"(또는 PHP를 지원하는 다른 입력 서식)로 하여 블록의 본문에 아래에 추가해 주세요. (샘플중의 t() 는 문자열을 번역 가능하게 하는 Drupal의 함수입니다.):

        print t('Welcome visitor!  Thank you for visiting. ') ;
        
      • 등록 유저의 이름을 표시하려면 대신에 아래를 사용하는:

        global $user;
        if ($user->uid) {
          print t('Welcome @name!  Thank you for visiting. ', array('@name' => $user->name)) ;
        }
        else {
          print t('Welcome visitor!  Thank you for visiting. ') ;
        }
        

      Drupal.org몇개의 PHP 스니펫의 실제적인 예를 제공하고 있습니다. 또한, 약간의 PHP 경험과 Drupal 시스템의 지식이 있으면 독자적인 PHP 스니펫을 작성할 수가 있습니다.

    • Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:

      [quote]This is a simple quote.[/quote]
      is displayed as:

      Quote:
      This is a simple quote.

      Additionally, there is an optional attribute which allows quotes to specify the original author.

      [quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
      is displayed as:

      Mr. Drupal wrote:
      This is a quote with an attribution line.

      Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.

      [quote]I think she says it best...
      [quote=Ms. Quotation]This is a quote nested within another quote.[/quote]
      but you can't argue with
      [quote=Ms. Reply]The more quotes, the merrier.
      Just don't get too carried away.[/quote]
      And I have nothing more to say.[/quote]
      is displayed as:

      Quote:
      I think she says it best...
      Ms. Quotation wrote:
      This is a quote nested within another quote.
      but you can't argue with
      Ms. Reply wrote:
      The more quotes, the merrier. Just don't get too carried away.
      And I have nothing more to say.
    • If you include a textual smiley in your post (see chart below), it will be replaced by a graphical smiley.
      Smileys
      SmileyAcronyms
      :party::party:
      :X:X :-X :oups:
      :exmark::exmark:
      :mail::mail:
      :love::love:
      :D:D :-D :lol:
      0:)0:) 0) 0:-) :innocent:
      :hat::hat:
      H)H) H:) H:-) :grade:
      :glasses::glasses:
      :ghost::ghost:
      :|:| :-| :stare:
      >)&gt;) &gt;-) :evil:
      S)S) S) :drunk:
      :davie::davie:
      :crown::crown:
      J)J) J-) :crazy:
      8)8) 8-) :cool:
      $)$) $-) :cash:
      :bigsmile::bigsmile:
      :beer::beer:
      :(:( :-( :sad:
      :arrow::arrow:
      |(|( \\( :angry:
      :):) :-) :smile:
      :~:~ :-~ :puzzled:
      :quest::quest:
      :((:(( :-(( :cry:
      :santa::santa:
      :*:* :-* :sexy:
      :O:O :-O :shock:
      :8):8) :8-) :shy:
      :Sp:Sp :-S) :sick:
      :star::star:
      :steve::steve:
      :sushi::sushi:
      :tired::tired:
      :p:p :-p :tongue:
      ;);) ;-) :wink:
  • Youtube:
  • foro y comentarios:
    • 줄과 단락은 자동으로 인식됩니다. <br /> 줄바꿈, <p> 단락 및 </p> 단락 끝 태그가 자동으로 추가됩니다. 만약 단락이 자동으로 인식되지 않으면 두개의 빈줄을 추가해 주십시오.
    • The content of this field will be saved to a file and included on the original page in an iFrame.
    • If you include a textual smiley in your post (see chart below), it will be replaced by a graphical smiley.
      Smileys
      SmileyAcronyms
      :party::party:
      :X:X :-X :oups:
      :exmark::exmark:
      :mail::mail:
      :love::love:
      :D:D :-D :lol:
      0:)0:) 0) 0:-) :innocent:
      :hat::hat:
      H)H) H:) H:-) :grade:
      :glasses::glasses:
      :ghost::ghost:
      :|:| :-| :stare:
      >)&gt;) &gt;-) :evil:
      S)S) S) :drunk:
      :davie::davie:
      :crown::crown:
      J)J) J-) :crazy:
      8)8) 8-) :cool:
      $)$) $-) :cash:
      :bigsmile::bigsmile:
      :beer::beer:
      :(:( :-( :sad:
      :arrow::arrow:
      |(|( \\( :angry:
      :):) :-) :smile:
      :~:~ :-~ :puzzled:
      :quest::quest:
      :((:(( :-(( :cry:
      :santa::santa:
      :*:* :-* :sexy:
      :O:O :-O :shock:
      :8):8) :8-) :shy:
      :Sp:Sp :-S) :sick:
      :star::star:
      :steve::steve:
      :sushi::sushi:
      :tired::tired:
      :p:p :-p :tongue:
      ;);) ;-) :wink:

사용자 로그인

LICENCIA CREATIVE COMMONS
Todo el contenido propio del blog está bajo la siguiente licencia: Puedes usar los textos e imágenes del blog siempre y cuando hagas referencia al blog paelladekimchi.com . No se puede usar para fines comerciales ni alterar el contenido. Si necesitas alguna fotografía o alguna colaboración especial, ponte en contacto con nosotros.