php global trim $_post
php
Solution
you can do this with `array_map`:
$_POST = array_map('trim', $_POST);
Problem
Could you trim all $_POST vars? because i have a very long list right now for trim each var. looks very unprofessional. i thought trim($_POST); would maybe work but it didnt :]