I have a url in html:
I need to turn it into a string exactly as:
Use htmlspecialchars_decode. Example straight from the PHP documentation page:
$str = 'this -> "'; echo htmlspecialchars_decode($str); // this -> "
this -> "