update : 2015.11.03
php.shukuma.com

검색:
 
 
Create a form

newt_form

(PECL newt >= 0.1)

newt_formCreate a form

설명

resource newt_form ([ resource $vert_bar [, string $help [, int $flags ]]] )

Create a new form.

인수

vert_bar

Vertical scrollbar which should be associated with the form

help

Help text string

flags

Various flags

반환값

Returns a resource link to the created form component, or FALSE on error.

예제

Example #1 A newt_form() example

Displays a single button "Quit", which closes the application once it's pressed.

<?php
newt_init
();
newt_cls();

$myform newt_form();
$button newt_button (512"Quit");

newt_form_add_component ($myform$button);
newt_refresh ();
newt_run_form ($myform);

newt_finished ();
newt_form_destroy ($myform);
?>

참고