I need to know what this code will look like without the strip_white_space function. I don't want to use this function for some fields. $data['TITLES'] = (!empty ($_REQUEST['TITLES']) ? strip_white_space ($_REQUEST['TITLES']) : ''); Thanks!
$data['TITLES'] = (!empty ($_REQUEST['TITLES']) ? $_REQUEST['TITLES'] : ''); i think its what u need Regards Alex