Can anyone tell me what's wrong with the following. It's one of several similarly constructed conditions that I'm using. When I removed the code my form worked fine. Otherwise, it returned a parse error.
if (strlen($POST['subPwd']) < 5 ¦¦ strlen($POST['subPwd']) > 10)
{
$error[$i] = "Password must be between 5 and 10 letters.";
$i++;
}
Any pointers appreciated.