Hi.
Need some help to a simple if statement.
I have to punch a customer number into a inputbox. The number has to be between 999999 and 3000000, but also a number between 59999999 and 70000000 is allowed.
The first part, that exclude everything under 999999 and over 70000000 is "easy", but does not fullfill my needs.
if ($account < 999999)
{
echo "Number under 999999";
}
if ($account > 69999999)
{
echo "Number over 999999";
}
Is there another function i ought to use or could it be done by arries the function in the right order?