> It sounds like you have a string "$x < $y" in the database that you then
> replace into a string "4 < 5" which you want to test a conditional on. If
> this is the case, why are you storing conditionals in the database?

The user will be able to construct their own query strings, it's
complicated but necessary.  The issue I'm dealing with, though, is
this:

$condition = "4 < 5";
if ($condition){
//do stuff
}

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to