Tech Thought

Tech tips, hints, and general musings. PHP, Perl, Mysql, Javascript, AJAX, JSON, Linux, Mac OSX

Entries for April 10th, 2008

How-To: Free MSN/Skype/Yahoo/GTalk on your mobile

I use MSN, Skype and GTalk to keep in touch with work colleagues all day everyday. I’ve always wanted to be able to do it on my mobile phone, however you usually have to pay a monthly fee to do this, and you have to run a different client for each protocol. Now, there is [...]

Leave a Comment

How-To: Parse XML with PHP (SimpleXML)

I’ve been looking for a simple way to convert XML into an array in PHP, like the Perl library XML::Simple does.  The best bet with PHP is SimpleXML, which provides a pretty simple interface for parsing XML in PHP. Take a simple example XML file: <list type=’randomlist’> <item> <name>Item Number 1</name> <code>ITEM1</code> </item> </list> To [...]

Leave a Comment