Archive for September, 2009
Collection of 10 top 10 lists about web development
I am a regular reader of web development articles and in this process bookmark a lot of them. Out of that collection I present to you a list of 10 ...
Quick PHP Tip: How to parse CDATA sections using SimpleXML
Applies to: simplexml_load_string and simplexml_load_file
Problem : SimpleXML does not parse text inside CDATA tags in an XML.
Consider the XML below:
$str = '';
$str.='some text goes here';
$str.='';
To parse it we use following ...
javascript : 7 tips for better coding
1- Use short hand notation for declaring arrays and objects
Arrays and objects are declared as following:
var someArray = new Array();
var someObject = new Object();
There is a shorthand notation for declaring ...
Super simple way to expand bitly urls using PHP
OK. Agree that bit.ly provides an API for expanding URL’s. The main purpose of our simple exercise here is to use curl functions in PHP to achieve the same. We ...
5 JSON resources for web developers
JSON(Javascript Object Notation) is defined as a lightweight data interchange format and fat-free lightweight alternative to xml. Since json is the native data form of Javascript, it can be used ...
