My personal blog ..
Just another WordPress site

Load twitter tweet in 1 line of PHP code

Leave a Comment

If all you’re looking to do is load your latest tweet in the simplest way possible this is the function you need. Luckily Twitter formats all of the latest posts into simple RSS feeds which makes it SUPER easy to just go and get them. It honestly doesn’t get any easier than this. It’s that [...]

Continue reading...

Get the latest status from facebook fan pages in PHP

Leave a Comment

If you are looking to show your latest post from your facebook fan page to your website. This is some thing you are looking for. It is really simple right to do. Generally when you search on google for this you will get this by help of “Facebook connect API“.  But in my opinion it [...]

Continue reading...

Remove duplicate rows in mysql table

Leave a Comment

How to delete duplicate rows ?? We always juggle how to remove duplicate rows from the database tables. Below is the SQL to remove the duplicate rows : How to delete duplicates in single SQL : A grouped self-join method:

Continue reading...

Full-text search in MYSQL

Leave a Comment

When we search in mysql table database using like query which only give result of only matching against one text search : For Example : SELECT * FROM your_table WHERE column_name LIKE ‘%$keyword%’; his was slow and inefficient.Every time someone searched for an article, they got far too many results, and as the database grew [...]

Continue reading...

QR code generation in php

Leave a Comment
QR code generation in php

What is QR code : A QR code (short for Quick Response) is a specific matrix barcode (or two-dimensional code), readable by dedicated QR barcode readers and camera phones. The code consists of black modules arranged in a square pattern on a white background. The information encoded can be text, URL or other data. Common [...]

Continue reading...

IMAPSYNC great tool for Migrating mail server

Leave a Comment

I am currently migrating large number of email addresses to new mail server. Since long I was juggling how to migrate my old VPS mail server client email to my new server.Both server are VPS optimize and I have Root access of the both server. One server was hosted with Uberhost and another was on [...]

Continue reading...

Geo-infomation using GEOCODE API

Leave a Comment

It’s possible to get geo-location information for any address using Google and PHP, here is how: I have found this method more accurate and more flexible that similar Yahoo API. As a bonus, it returns other useful information. Complete google API can be find here: http://code.google.com/apis/maps/documentation/geocoding/index.html Also will post some more information on Geo information [...]

Continue reading...

Resize one or more images

Leave a Comment

This script can be used to resize one or more images. It will save the file to a directory and output the path to that directory which you can display or write to a databse. Include the file containing the function in your document and simply call the function with the correct parameters and your [...]

Continue reading...

Hello to layar world!

Leave a Comment
Hello to layar world!

GETTING STARTED with layar development : Sign up to be a layer developer at layar website (http://www.layar.com/). Read API Documentation in the sidebar to get familiar with API technical details. Create your layer on the publishing site. Check Tutorials to see how to build a simple layer. Need some help? Please visit our developer support [...]

Continue reading...

Search particular search tag from twitter tweets

Leave a Comment

Search particular search tag (#search tag) from twitter tweets. Do the following steps : 1.Create a dir “cache” and give write permission. 2.Declare the search tag in hashtag. .

Continue reading...