sorry people for that basic question but i cannot find out in this little problem for me
function checkSTR($s)
{
$s=strip_tags($s);
$s=ltrim(rtrim($s));
return $s;
}
i'am trying to use empty with function using, and i get parse error which i cannot find
if (!empty(checkSTR($HTTP_POST_VARS['login'])))
{
}
on this last if i get parse error, hm what's wrong
thanks