Html source encode?

If you have access to the PHP and want to change all html special characters to their rightful variations use: print htmlspecialchars_decode($string).

I think this is the best way given what is being attempted here. +1 – Levi Hackwith Apr 20 '10 at 20:26 this worked, thanks. – Joseph Apr 20 '10 at 20:29.

You could do this very simply using str_replace. $string = str_replace('"', '"', $string); However, as Levi said, why not just leave it this way? It should have no effect on the display.

I think the issue is due to the fact that he needs to take the source output and input into something else. The "e; is causing the issue. – Levi Hackwith Apr 20 '10 at 20:25.

When I view source on my php page I get " for a quote. But instead, I would like " to be used in the source code. I have no control over manually replacing it so Im wondering if there is a function to do such a thing.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions