[Solved] angle bracket mysql php [duplicate]

The output of from_addr will be there if you are receiving results from your query. Take a look at this example: $string = ‘<hello world>’; echo $string; echo htmlspecialchars(‘<hello world>’); Whereas, echo $string will show in the source code, but is being treated as a tag, and therefore not display “on screen”. Using the htmlspecialchars() … Read more