[Off topic]
I cannot edit my post? o_O
[/Off topic]
I think I got this figured out
I wrote the following function that would turn all & to &
function jU_encode($string) {
return utf8_encode(str_replace("&", "&", $string));
}
As a result, I got my desired result
I'm still trying to understand as to why it worked out
Thanks for your input 🙂