php echoing angle brackets

A “page” is written in HTML, so < means “Start a tag”.

You have to represent characters with special meaning in HTML using entities.

You can write them directly, or make use of the htmlspecialchars function.

echo "&lt;sometext&gt;";
echo htmlspecialchars("<sometext>");

Leave a Comment