What's the code to strip javascript from a REQUEST['d form?
is it?
$text = stripslashes( $text );
or
$text = stripslashes(wp_filter_post_kses($text));
What would I use to strip "all" html from an received form get?
What would I do to make sure it's database safe?