Archive for 2009

Site Update: 2 years old!

Come December 4th, this site will be 2 years old! How time flies. To mark this occasion, I’ve revamped the look of the site, and will continue to tweak various things in the days ahead.

Posted on November 29, 2009 at 11:36 am by Eldee · Permalink · Leave a comment
In: News · Tagged with: 

Codeigniter: Intergrating OpenFlashCharts

Yes I know, it has been some time since I last posted anything on the site. Things have just been crazy at work, trying to get up to speed on using Pentaho for a major project. In fact, I might start posting some Pentaho related topics in the future. There’s definitely a need for more [...]

Posted on November 6, 2009 at 1:12 pm by Eldee · Permalink · 6 Comments
In: PHP Tutorials · Tagged with: , ,

Codeigniter: Setting up multiple sites on one install

It’s been awhile since I last posted about Codeigniter. In this post, I’m going to walkthrough how I setup a CI install that can support multiple sites. This is by no means the only way to do it, but it’s what works for me.
CI’s default folder structure is really geared towards one site domain, and [...]

Posted on August 19, 2009 at 4:19 pm by Eldee · Permalink · 21 Comments
In: PHP Tutorials · Tagged with: , ,

WebPageTest: The little known but great webpage benchmarking tool.

When it comes to testing how fast a webpage loads, many of us are familiar with Firebug/Yslow tool (installable as a Firefox browser plug-in). Firebug/Yslow is a fantastic plug-in for Firefox, it gives a wealth of information about any webpage as your browser renders it. This is a must have for any webmaster’s toolbox. Unfortunately, [...]

Posted on July 31, 2009 at 11:43 pm by Eldee · Permalink · 3 Comments
In: Website Building/SEO · Tagged with: , ,

PHP Basics: Accessing Remote URLs using cURL

In this post, I’m going back to basics to talk about accessing remote URLs with cURL.
In PHP, there are actually four ways to access a remote URL – fopen() fsockopen(), cURL extensions and HTTP_Request class from the PEAR library. Now, choosing one way over another really depends on your needs for simplicity, control, and portability. [...]

Posted on June 19, 2009 at 4:40 pm by Eldee · Permalink · 9 Comments
In: PHP Tutorials · Tagged with: , ,

Google Analytics API class for PHP

About a month back, Google opened the Google Analytics API service to all Analytics users. the API allows developers to integrate the GA reports into their own applications or websites, or even access the reports from a phone!
I’ve been thinking about how I can make use of this API to enhance the sites I’m working [...]

Posted on May 29, 2009 at 5:13 pm by Eldee · Permalink · 110 Comments
In: PHP Tutorials · Tagged with: , ,

Google ‘Wonder Wheel’ and new search features

Google has launched a new set of features to their search engine which they call “Search Options”. It bring a collection of tools that lets us slice-and-dice our search results to find what we want faster.
The new features includes the ability to filter a search by types such as Forums, Videos, Reviews, etc. We can [...]

Posted on May 14, 2009 at 6:57 pm by Eldee · Permalink · One Comment
In: Website Building/SEO · Tagged with: ,

Review: Advanced Web Metrics with Google Analytics

When we first deployed Google Analytics to our websites, it was just a matter of putting in the javascript tagging according to GA’s setup guide. With that, we thought our job was done as “techies”. When the business folks and marketers approached us to get more detail out of GA, we happily put in on [...]

Posted on April 23, 2009 at 6:29 pm by Eldee · Permalink · Leave a comment
In: Book Review · Tagged with: , ,

PHP’s alternative syntax and why it’s useful

PHP offers an alternative way to write their control structures for as long as I’ve remembered. It basically does away with the curly brackets and replaces the opening curly with a colon (:) and the closing with ‘end’-whatever. I have to be honest and say I’ve never really found a need to use the alternative [...]

Posted on April 16, 2009 at 2:34 pm by Eldee · Permalink · 16 Comments
In: PHP Tutorials · Tagged with: , ,

Codeigniter: Mixing segment-based URL with querystrings

Codeigniter, by default crafts it’s URL in a search engine friendly format. It uses a segment-based approach and does away with the all familiar querystring format that developers have been using for many years to pass parameters via the URL into their applications.
Codeigniter does allow you to turn on the querystring capability, but that [...]

Posted on March 9, 2009 at 5:58 pm by Eldee · Permalink · 44 Comments
In: PHP Tutorials · Tagged with: , , ,