Does this option serve any other purpose than getting data ready for databases? Do unescaped ', ", etc. cause post errors?
Also, does anybody have a quick way of unescaping the posted data (for display on web pages)? Quick hack I came up with, but there are arrays to deal with too:
foreach ($HTTP_POST_VARS as $key => $var) {
$$key = stripslashes($var);
}