Why does php automatically strip out tags in a string? Is that a setting somewhere?
For instance:
$s = "<"
echo $s results in <
$s = ">"
echo $s results in >
$s = "<".abc.">"
echo $s is blank.
I am sure it is something simple. I am trying to store XML to a string but can't because all of the tags are automatically stripped out. Here is a snippet of my code...
$XML = "<?xml version='1.0'?>";
$XML .= "<resultset>";
$XML .= "<changerequest>";
$XML .= "<date>".$date."</date>";
Help!