Hi,
I have a variable
$var = '10>5";
This string is obtained from a table and is stored in the variable.
I want to evaluate this string. If it is true, then execute.
E.g,
if($var is true){
}else {
}
I tried to use eval but is not working as expected.