Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.22 KB

time.md

File metadata and controls

44 lines (31 loc) · 1.22 KB

HAPEL Core Method Reference


<input type="time" ...>

Description

Creates a <input type="time"> html tag.

time($name, $value, $required, $placeholder, $class, $id, $style, $data, $attr);

Parameters

Parameter Required Default
$name no null
$value no null
$required no false
$placeholder no null
$class no null
$id no null
$style no null
$data no null
$attr no null

Return Values

string

Example

Usage:

echo time('start');

Result:

<input type="time" name="start">