In the code shown below it appears that the last line of code should start
_stripslashes_recurs
Only a novice would ask this question, that's me :-)
[IMG]file:///C:/DOCUME%7E1/Dave/LOCALS%7E1/Temp/moz-screenshot.jpg[/IMG][IMG]file:///C:/DOCUME%7E1/Dave/LOCALS%7E1/Temp/moz-screenshot-1.jpg[/IMG]
Code:
foreach ($variable as $key => $value)
{
$key = ($top) ? $key : stripslashes($key);
$clean_data[$key] = (is_array($value)) ?
stripslashes_rcurs($value, false) : stripslashes($value);
}