exactly:
echo strip_tags($HTTP_POST_VARS['input_name']);
or:
echo strip_tags($variable_name);
you can even allow some html tags:
$string = strip_tags($string, '<a><b><i><u>');
the last example is directly from the manual - though some complain it is hard to heard, the brief description and examples often help understanding a function.