hi,
i want to echo the string '<?php' in a php script like :
echo "<?php";
but when i try nothing gets displayed ...
if I use
echo "<\?php";
then the string is displayed as : <\?php
Is there anything I can do ??
echo "<?php"
|