I am trying to run an array_map (two, technically) on all values received from a $_POST variable, from a multiple select list.
Here's the code:
$culture = array_map('mysql_real_escape_string', array_map('html2txt', $_POST['culture[]']));
Should this work?