if (strlen($input) < 12) { echo "Input is too short, minimum is 12 characters (20 max)."; } elseif(strlen($input) > 20) { echo "Input is too long, maximum is 20 characters."; }