X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=encode.php;h=c08f8afe0e1890f668d2f18639cb9ecd00599aa0;hb=c3133300f98840b9cedd56f6269274810160d6c2;hp=24a150dbc4251b4c1645168651b2f6433a76e507;hpb=bdcec472dcd1e9fc6ff9df137f838f1f3124ec9c;p=wfpl.git diff --git a/encode.php b/encode.php index 24a150d..c08f8af 100644 --- a/encode.php +++ b/encode.php @@ -99,13 +99,25 @@ function enc_url_path($str) { # # Example: function enc_checked($str) { - if($str == 'Yes') { + if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { return '" checked="checked'; } else { return ''; } } +# checkboxe values are stored in the db and handled in php as 0 or 1. When you +# want it displayed as "Yes" or "No" use this: +# Example: (displaying values from a form submission) Over 60?: ~over_60.yesno~ +function enc_yesno($str) { + if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { + return 'Yes'; + } else { + return 'No'; + } +} + + # add a tab at the begining of each non-empty line function enc_tab($str) { $lines = explode("\n", $str); @@ -125,54 +137,45 @@ function enc_upper($str) { return strtoupper($str); } -function enc_ddmmyyyyhhmm($seconds) { - return date('m/d/Y g:ia', (int)$seconds); -} - - -# display