Flipkart

Wednesday, September 22, 2010

Install Adobe Reader (acroread) on Fedora 12 and Fedora 13

http://macintoshbrasil.com/2010/06/10/install-adobe-acrobat-pdf-reader-on-fedora-centos-red-hat-rhel/

Tuesday, September 14, 2010

Enable the New Google Search

1. Go to Google.com.
2. Once it loads, enter this code into your web browser's URL address field:

javascript:void(document.cookie="PREF=ID=20b6e4c2f44943bb:U=4bf292d46faad806:TM=1249677602:LM=1257919388:S=odm0Ys-53ZueXfZG;path=/; domain=.google.com");

There shouldn't be any http://google.com in front of that. Just that code.

3. Hit enter.
4. Reload or open a new Google.com page and you will have access to the new user interface.

Monday, September 6, 2010

get the Next Auto Increment number in Mysql

$query = mysql_query("SELECT MAX(id) FROM `table`");
$results = mysql_fetch_array($query);
echo $results["Auto_increment"];

Friday, September 3, 2010

Drupal l() With complex link with image Example

$img = '< img src="'.$base_path . $directory . '/images/rssIcon.png" >';
l($img, 'user/3', array('attributes' => array('class' => 'link', 'id' => 'xxx', 'title' => 'Title'), 'html' => 'true'));