= Install =

 * easylogic lib 을 다운로드 받아서 압축을 푼다. 설치 끝 ~!

= Set php.ini =

 * include_path 에 lib 디렉토리를 설정한다.
{{{
 include_path = ".;c:\easylogic\uselib"
}}}

= Import =

 * php.ini 파일 속성 중 auto_prepend_file  설정 
  auto_prepend_file = "import.php"

 * 페이지에서 직접 import.php 파일 include 
{{{#!vim php 
<?php
include_once "import.php";
?>
}}}

= Basic = 
 
{{{#!vim php 
<?php

// 예제 1. 고정크기 윈도우 뛰우기 
$window = new WBAppWindow(array(
    'title' => 'test', 
    'width' => 300, 
    'height' => 300, 
));

$window->setVisible(true);

WBApplication::start();

?>
}}}

= Run = 

{{{
   ..\php5\php.exe  test.phpw
}}}
