|
|
|
|
|
by icedchai
2598 days ago
|
|
The difference is React actually handles escaping properly. It won't just dump out raw HTML by default, so you won't have an XSS issue. PHP, on the other hand, requires manual escaping with htmlentities() ... It is very, very error prone. |
|