Devlopment/Web

    HTML Event

    - Window Events Only valid in body and frameset elements. - onload script Script to be run when a document loads onunload script Script to be run when a document unloads - Form Element Events Only valid in form elements - onchange script Script to be run when the element changes onsubmit script Script to be run when the form is submitted onreset script Script to be run when the form is reset ons..

    Core & Keyboard Attribute

    class class_nameor style_name The class of the element id id_name A unique id for the element style style_definition An inline style definition title tooltip_text A text to display in a tool tip accesskey character Sets a keyboard shortcut to access an element tabindex number Sets the tab order of an element

    META 태그

    페이지 이동 PHP : echo (""); 페이지 컨텐츠 타입

    DB Programing

    // DB Connect $db_name = "voip"; $user_name = "root"; $user_password = "apmsetup"; $connect=mysql_connect("localhost","root","apmsetup") or die( "SQL server에 연결할 수 없습니다."); mysql_select_db($db_name, $connect); // select $user_result = mysql_query("SELECT * FROM search_db"); $user_count = mysql_num_rows($user_result); mysql_result($user_result, $i, "Homepage"); // insert $SQL = "insert into user_..

    세션 및 GET, POST 받기

    SESSION $_SESSION["이름"]; SESSION Start session_start(); SESSION end unset($_SESSION['세션명']); GET $_GET["이름"]; POST $_POST["이름"];