Hi all
I like to capitalize all data going into my tables.
Is there an easy way of just capitalizing all POST VARS?
TRACY
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);'));
Or [man]array_map[/man].