Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 980 Bytes

form.md

File metadata and controls

43 lines (30 loc) · 980 Bytes

HAPEL Core Method Reference


<form ...>

Description

Creates a <form> html tag.

form($child, $method, $action, $class, $id, $style, $data, $attr);

Parameters

Parameter Required Default
$child no false
$method no null
$action no null
$class no null
$id no null
$style no null
$data no null
$attr no null

Return Values

string

Example

Usage:

echo form('...', 'get','send.php');

Result:

<form method="get" action="send.php">...</form>