">
<?php$p = "$Test";$q = "\$Example";echo $p, $q;?>
As there is a backslash before $ it takes it as a string and not a variable therefore we get $Example as the output.
Previous Question Next Question
Your comments will be displayed only after manual approval.