Forum Moderators: coopster
$str="<title>Title</title>";
However, I need it to look like this:
$str="<title>Title</title>";
Currently I'm using the following code to convert the former to the latter:
$old=array("\"","<",">");
$new=array(""","<",">");
$title=str_replace($old,$new,"<title>Title</title>");
Is there a built in function to do this for me?
rawurlencode, and urlencode don't work for what I need, is there one that might?