PHP Dokumentation: Function newt-button
12. Januar 2010 von werner
newt_button
(PECL newt >= 0.1)
newt_button — Create a new button
Parameter-Liste
- left
X-coordinate of the button.
- top
Y-coordinate of the button.
- text
The text which should be displayed in the button.
Rückgabewerte
Returns a resource link to the created button component, or FALSE on error.
Beispiele
Beispiel #1 A newt_button() example
<?php$form
= newt_form();$ok_button = newt_button(5, 12, "Run Tool");
newt_form_add_component($form, $ok_button);?>Siehe auch
- newt_button_bar() – This function returns a grid containing the buttons created.
Geschrieben in PHP-Dokumentation | 0 Kommentare