I’m trying add some data to an existing XML file using PHP’s SimpleXML. The problem is it adds all the data in a single line: <name>blah</name><class>blah</class><area>blah</area> … And so on. All in a single line. How to introduce line breaks? How do I make it like this? <name>blah</name> <class>blah</class> <area>blah</area> I am using asXML() function. […]
Category: php
How to Include Variable inside Class in php
i have some file test.php <?PHP $config_key_security = “test”; ?> and i have some class test5.php include test.php class test1 { function test2 { echo $config_key_security; } }