I am writing a code in PHP and line is as follows
$xml_output .= "\t\t\t<\report-paper_metadata>\n";
As u can see that i am trying 2 output
<\report-paper_metadata>
But PHP is reading it as \r feed ..
<eport-paper_metadata>
I dont want to declare using a variable and use it..
any suggestion on how overcome this??
Any questions plzzz comment..
\ris a special character, just like\n. Use\\rinstead (double slash).