I want to print following text as it is:
echo \" AAAAA\";
But it is just showing \'AAAAA\' as output.
How can I esca
Use HTML entities: < for < and > for >. Could be achieved using htmlspecialchars function: http://php.net/htmlspecialchars.
<
>
htmlspecialchars
Read more about HTML entities here: http://www.santagata.us/characters/CharacterEntities.html