print a submit button : Form « Form « PHP
- PHP
- Form
- Form
print a submit button
function input_submit($element_name, $label) {
print '<input type="submit" name="' . $element_name .'" value="';
print htmlentities($label) .'"/>';
}
Related examples in the same category