php man page for newt_win_entries

Query: newt_win_entries

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

NEWT_WIN_ENTRIES(3)							 1						       NEWT_WIN_ENTRIES(3)

newt_win_entries -

SYNOPSIS
int newt_win_entries (string $title, string $text, int $suggested_width, int $flex_down, int $flex_up, int $data_width, array &$items, string $button1, [string $...])
DESCRIPTION
Warning This function is currently not documented; only its argument list is available.
PARAMETERS
o $title - o $text - o $suggested_width - o $flex_down - o $flex_up - o $data_width - o $items - o $button1 - o $button2 -
RETURN VALUES
EXAMPLES
Example #1 A newt_win_entries(3) example <?php newt_init(); newt_cls(); $entries[] = array('text' => 'First name:', 'value' => &$f_name); $entries[] = array('text' => 'Last name:', 'value' => &$l_name); $rc = newt_win_entries("User information", "Please enter your credentials:", 50, 7, 7, 30, $entries, "Ok", "Back"); newt_finished (); if ($rc != 2) { echo "Your name is: $f_name $l_name "; } ?> PHP Documentation Group NEWT_WIN_ENTRIES(3)
Related Man Pages
newt_form(3) - php
array_rand(3) - php
mysqlnd_qc_get_available_handlers(3) - php
newt_win_entries(3) - php
unpack(3) - php
Similar Topics in the Unix Linux Community
string returning function
Counting string of a variable
Convert entries in a text file to values in a string
How to fill a memory with random numbers in C