Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
public function getPost($key = null, $default = null)
{
if (null === $key) {
return $_POST;
}
return (isset($_POST[$key])) ? $_POST[$key] : $default;
}
function escape($string, $quote_style = ENT_QUOTES, $charset = 'UTF-8')
{
return htmlspecialchars((string) $string, $quote_style, $charset);
}
echo '<input type="text" name="date" value="'. escape($something->getPost('date', '')).'" />';
$post = function ($key, $default) use ($something) {
return escape($something->getPost($key, $default));
};
echo '<input type="text" name="date" value="'. $post('date', '').'" />';