How do you replace a NULL value in the select with an empty string? It doesnt look very professional to output \"NULL\" values.
This is very unusual and based on my synt
I know this is old question but i got best solution without change query and also support for SELECT * statement
foreach ($row as &$value) { if($value==null){ $value=""; } }