Files
anpdf/app/helpers/post_value.php

11 lines
158 B
PHP
Raw Normal View History

2021-06-21 17:55:53 +03:00
<?php
function post_value($name, $default = ''){
if (isset($_POST[$name]))
return $_POST[$name];
else{
return $default;
}
}