First of all, let me welcome you (the board and all it's users) back. You have been sorely missed. Also, wishes for a happy new year to everyone.

Now my Q: Is it possible to get the comparisonstatement (for an IF) from a .ini file? I've tried it a couple of times, and it seems the statement is true just because the item in the ini-file it checks exists. It doesn't really evaluate it as a statement.

Did that make any sense to anyone? Hehe. Maybe an example..

Let's say temp.ini contains something like this:
[start]
req=-1 > 0
Code:
 if ($readini(temp.ini,start,req)) {
...
} 


We all know -1 is NOT greater than 0, but the expression is still evaluated as true. Any bright ideas? confused (no [] doesn't help, or i'm doing it wrong) Thanks!


-TS