garchive-wp-theme/FormHelper.php
2018-12-17 20:42:52 +00:00

12 lines
No EOL
196 B
PHP

<?php
class FormHelper
{
public static function post_val($key, $default = '') {
if (isset($_POST[$key])) {
return $_POST[$key];
}
return $default;
}
}