You're trying to use the > operator on a string.
Hi,
This bit isn't right either:
if(entry == "Repeat" || "repeat")
should be this:
if(entry == "Repeat" || entry == "repeat")
Instead of a series of if's you need, an if, some else if's, then an else.
This bit needs to be a for loop:
if(repeatnum > 0){}
HTH
Thanks guys,
I feel stupid now. :0