$a = 'output';
eval("echo \"$a\";");
$a = 'output';
eval("echo $a;");
$a = '\'withdrawal\";
eval("echo \"$a\";");
echo 'output';
and then on the screen the word without quotation marks should be shown?$a = 'output';
eval("echo $a;");
eval("echo output");
$a = 'output';
eval('echo $a;');
Find more questions by tags PHP