try this instead:
if (count($or) > 58)
print "58 greater than Variable.";
else
print "58 is less than Variable.";
also, you don't need those "break"s in your code. try it - it'll work fine without them. another way to create your if statements is with the { and } characters. you might find this method to be easier to organize and view your code when you start using more than 1 line of code in an if statement.
if (count($or) > 58) {
print "58 greater than Variable.";
// a second line of code is acceptable when you use { and }
// and even more lines of code
} else {
print "58 is less than Variable.";
// even more code
}
hope this helps.
cheers,
.s