How to convert any HTML special character into HTML encoding to prevent processed as standard HTML in PHP

2 Answers

0 votes
echo htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES) . "<br />";

 
/*
run: 
  
&lt;a href='test'&gt;Test&lt;/a&gt;
  
*/ 

 



answered Sep 6, 2017 by avibootz
0 votes
// http://localhost:8080/test.php?user="tim<>tim"

echo filter_input(INPUT_GET, "user", FILTER_SANITIZE_SPECIAL_CHARS) . "<br />";

 
/*
run: 
  
"tim&lt;&gt;tim"
  
*/

 



answered Sep 6, 2017 by avibootz

Related questions

2 answers 224 views
224 views asked Jul 4, 2016 by avibootz
2 answers 260 views
1 answer 199 views
4 answers 487 views
1 answer 189 views
2 answers 160 views
...