Posted on 13 December 2011. Tags: xml
You can build really cool apps with API’s and most sites will send either JSON or XML back to your app, I prefer JSON actually but some of these API’s will only send XML and, while you can always convert XML to JSON, it’s always better to save that processing time.
Read the full story
Posted in PHP
Posted on 01 December 2011. Tags: ios, parser, xcode, xml
The Most Popular XML Parsers for the iPhone
In my research, here’s what seemed to me to be the most popular XML Parsers for the iPhone, and a brief description of each one: Read the full story
Posted in ios
Posted on 11 October 2011. Tags: api, pingback, xml
Motivation: For a side project I am working on, I wanted to be able to send a trackback to WordPress blogs (or any blog with an XMLRPC endpoint), using PHP. Simple enough. Read the full story
Posted in PHP
Posted on 14 December 2009. Tags: file_get_contents, mb_convert_encoding, xml
$requestAddress = “your XML url”;
$xml_str = file_get_contents($requestAddress,0);
$xml_str = mb_convert_encoding($xml_str, ‘UTF-8′, “iso-8859-7″);
//mb_convert_encoding(‘The URL’, ‘The URL Encoding’, ‘Your encoding’)
Posted in PHP