0
votes
2answers
27 views

link: issue with symbol " (might be an encoding issue)

I have a link generated on my page as <a href="#" onClick="loadList(5); return false;">5</a> The problem is that when I click on the link it redirects me to <a #" ...
1
vote
2answers
169 views

str_replace this character: ö

I am trying to do a str_replace on the following line: team 4 -1ööööö57167168 I've been able to do it in the past just by doing this: str_replace("ööööö", " ",trim($line)); The desired outcome ...
1
vote
3answers
692 views

outputting \r\n after text is decoded - PHP

I am building an application where users can enter a note into a textarea. The note is then encoded when entered into the database. When I decode the returned value, the nl2br function isn't working. ...
3
votes
3answers
555 views

Cannot replace £ with &pound from string

I have a HTML string containing £ signs, for some reason i'm not able to replace them. I'm assuming this is an encoding issue although i can't work out how. The site is using ISO-8859-1 for its ...
0
votes
3answers
2k views

PHP encoding problem with Pound Sign

I am retrieving a variable that contains a £ sign from another page. I want to remove this and I have tried using str_replace but I am left with the following: �100. $amount = str_replace('£', '', ...
2
votes
4answers
9k views

I have string with “\u00a0” and I need to replace it with “” str_replace fails

I need to clean a string that comes (copy/pasted) from various office suite (excel, access, word) each with his own set of encoding. I'm using json_encode for debugging purposes in order to being ...