Hi
I want to display whatever the user has input as it is.
For eg:
<?php
$a="<";
echo $a;
?>
should output < and not <
<?php
$a="<?php?>";
echo $a;
?>
should output <?php?>
How to achieve this??
I want to display whatever the user has input as it is.
For eg:
<?php
$a="<";
echo $a;
?>
should output < and not <
<?php
$a="<?php?>";
echo $a;
?>
should output <?php?>
How to achieve this??
Comment