4 function disp_text($text) {
6 return htmlspecialchars(trim($text), ENT_QUOTES);
9 function save_text($text, $max=0) {
17 $text = substr($text, 0, $max);
19 $text = prep_save(trim($text));
24 function post_text($text) {
30 function dollar_amt($fmt_value) {
31 $return_amt = $fmt_value;
37 function dateformat($pFormat, $pDate, $pNull=1) {
38 if (trim($pDate) ==
"" && $pNull == 1)
41 return date($pFormat, strtotime($pDate));