I want to do the following
[php]
$prob = "2+2";
echo $problem;
echo "Answer is".$prob;
//I need to convert the prob to the answer.
//OR
$prob = 2+2;
echo $prob;
//Answer needs to be converted to "2+2" , without the quotes.
echo "Answer is".$prob;
[/php]