* Posts by Rochak Chauhan

2 publicly visible posts • joined 18 Aug 2008

Google Analytics crippled by autoimmune disease

Rochak Chauhan
Thumb Down

I disagree

Well I have set up 4 emails and 10 website. It worked like a charm for us. Guess it must be some isolated incident.

Harness XML with PHP 5 extensions

Rochak Chauhan
Black Helicopters

Mhhh..why use extension for XML in PHP5

Well.. I guess the easier and bettor solution is to use "simpleXml" in PHP5. No need to enable or add it. The SimpleXML extension is enabled by default in PHP5.

Sample Usage:

if (file_exists('test.xml')) {

$xml = simplexml_load_file('test.xml');

echo "<pre>";

print_r($xml);

}

else {

exit('Failed to open test.xml.');

}

When printed, each node of the XMl can be access like this:

echo $xml->NodeName;

Best Regards,

Rochak Chauhan.