3.3. button

button element, navigation within your program.

the following function creates a button element:

element createButton (string status, string value, [string src, [string name]]);

parameter:

function setCaption(string $caption) - sets a caption. example:

		$myButton = $ippfp->createButton("start","10","img/next.png","mybutton");
		

Hint: if no image source is given, the name of the button will displayed.

		$myButton = $ippfp->createButton("start","10","","mybutton");