Forum Moderators: coopster
The name of the class is
class popoon_classes_externalinput
and it contains two functions
static function basicClean($string) and static function removeMagicQuotes($data)
$class = new popoon_classes_externalinput();
$subject = $class->basicClean($subject);
$subject = $class->removeMagicQuotes($subject);
echo $subject;
You might also want to read up on classes before attempting to use them:
[php.net...]
dc