I am building a XML RSS for my page. And running into this error:
error on line 39 at column 46: xmlParseEntityRef: no name
Apparently this is because I cant have & in XML... Which I do in my last field row...
What is the best way to clean all my $row['field']'s
in PHP so that &'s turn into &
Use htmlspecialchars
to encode just the HTML special characters &
, <
, >
, "
and optionally '
(see second parameter $quote_style
).
It's called htmlentities() and html_entity_decode()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With