I see, learn and rediscover… everyday!
 
Month: <span>June 2010</span>

Query String in URL using Codeigniter

CodeIgniter by default won’t allow you to use query strings in the URL. This is how you enable query string in url in codeigniter. 1. Set $config[‘uri_protocol’] = “PATH_INFO” in config.php 2. Set $config[‘enable_query_strings’] = TRUE in config.php 3. Make you sure you have QSA in your .htaccess. For example, RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond $1 !^(index\.php|images|includes) RewriteRule …

My first 30 day challenge.

I’m a big fan of Matt Cutts (who isn’t) and especially like his 30 day challenges. So, I decided probably I can give it a shot for a couple of months. So, some of the stuff I had in my list are. 1. Learn Hadoop. 2. Read a book every 2 days. 3. Learn a new programming language 4. Go …