PHP Portal » PHP Handbuch » newt_form

Werbung

newt_form


(PECL newt >= 0.1)

newt_formCreate a form

Beschreibung

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

Create a new form.

Parameter-Liste

vert_bar

Vertical scrollbar which should be associated with the form

help

Help text string

flags

Various flags

Rückgabewerte

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

Beispiele

Beispiel #1 A newt_form() example

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

PHP Code
1
2
3
4
5
6
7
8
9
newt_init(); newt_cls(); $myform = newt_form(); $button = newt_button(5, 12, "Quit"); newt_form_add_component($myform, $button); newt_refresh(); newt_run_form($myform); newt_finished(); newt_form_destroy($myform);

Siehe auch