hey,
I was caught by this recently. mosGetParam stripping tags is somewhat surprising behavior. to turn it off you need to pass an extra flag.
Code:
$value = mosGetParam( $_REQUEST, $key, $default, _MOS_ALLOWHTML);
it is worth looking at the mosGetParam code in includes/mambo.php to see how it works. another interesting fact is that it does
not touch subarrays of REQUEST, POST, etc. so when you are retrieving a param that is an array, you need to run mosGetParam to extract its values, in order to be consistent.
Code:
// get the first value of options[]
$array = mosGetParam( $_REQUEST, "options" )
$option0 = mosGetParam( $array, 0)
hope this helps,
keith