Hi all๐Ÿ™‚
I like to capitalize all data going into my tables.
Is there an easy way of just capitalizing all POST VARS?

TRACY

    array_walk($_POST, create_function('&$val, $key', '$val = strtoupper($val);'));
    
      Write a Reply...