I have some outfile code with a remark (SUBMIT_SSREMARK) in it and the remark has the html characters instead of foreign characters
$QuerySSSANDBOX = "SELECT
CONCAT(
RPAD(ID,32,' '),
RPAD(NAV_PN,25,' '),
RPAD(SUBMIT_SSREMARK,200,' ')
)
INTO OUTFILE '../../../SSSANDBX'
LINES TERMINATED BY '\r\n'
FROM TBLSSSANDBOX";
How do I use rawurldecode to decode these in the oufile?