Query: newt_form
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
NEWT_FORM(3) 1 NEWT_FORM(3) newt_form - Create a formSYNOPSISresource newt_form ([resource $vert_bar], [string $help], [int $flags])DESCRIPTIONCreate a new form.PARAMETERSo $vert_bar - Vertical scrollbar which should be associated with the form o $help - Help text string o $flags - Various flagsRETURN VALUESReturns a resource link to the created form component, or FALSE on error.EXAMPLESExample #1 A newt_form(3) 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 (5, 12, "Quit"); newt_form_add_component ($myform, $button); newt_refresh (); newt_run_form ($myform); newt_finished (); newt_form_destroy ($myform); ?>SEE ALSOnewt_form_run(3), newt_run_form(3), newt_form_add_component(3), newt_form_add_components(3), newt_form_destroy(3). PHP Documentation Group NEWT_FORM(3)
Related Man Pages |
---|
fbsql_create_blob(3) - php |
finfo_buffer(3) - php |
ibase_blob_import(3) - php |
imagegrabwindow(3) - php |
newt_win_entries(3) - php |
Similar Topics in the Unix Linux Community |
---|
Basic php help |