michaelfurey Posted April 4, 2017 Share Posted April 4, 2017 I would like to print a string variable ($var_xml) with php... the output that i wish is that: <?xml version="1.0"?> <application> <params> <login>https://google.com</login> </params> <subproduct sid="001"> <custom_fields> <filing_country>SPAIN</filing_country> <tin>800</tin> <radioName>1</radioName> </custom_fields> <module name="vat_invoices"> <module_item> </module_item> </module> </subproduct> </application> But if I print that string variable the output that I see is that: https://google.com SPAIN 800 1 How can I print the first output? Quote Link to comment Share on other sites More sharing options...
requinix Posted April 4, 2017 Share Posted April 4, 2017 Do a View Source of the page. 1 Quote Link to comment Share on other sites More sharing options...
taquitosensei Posted April 4, 2017 Share Posted April 4, 2017 Do a View Source of the page. Your browser is formatting the XML for you. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.