I just wanted to know what is the difference between:
echo {$number1..$number2}
AND
eval echo {$number1..$number2}
Of course, imagine that there is a value in $number1 and $number2. With the first option is just not working, but with the second option it works. I'm not the typical guy that only want something to work, I want to understand why it happens like that so, why exactly is this happening like this?