Mysql Table Editor

In a php project, if we get the requirement , we usually start design and database. But the data entry procedure is very hard. In this case PhpMyadmin is a good comfort.  Here is another tool from phpguru.org , MySQL Table Editor. Using this library you can make your database table editable from your php [...]

3 Comments , , , , , , ,

Contact Grabber

If you are a social media website developer , sometimes you might search for grabbing contacts from a particular email account if the password is given. I also did the same.  In most of the cases it did not work properly. But recently i got a contact grabber from phpclasses.org which works perfectly on Gmail, [...]

49 Comments , , , , , , , , , , , , , , , , , , , ,

Pagination in Ruby on Rails

Old rails has a buitl in pagination option. For example is you have to paginate @user, which is a model object for the table user def user_list @user_pages,@users=paginate(:users,:order=>’name’) end But in new version of rails, they removed the pagination option. So you need to install a plugin , which name is will_paginate You can install [...]

2 Comments , , ,

Intelligent Watermark (php + gd)

Online Photoshop in PHP Part (5) >> (image after watermarked with gmail logo) Those who haven’t seen  the online photoshop tool created by me, just click here: http://www.sajithmr.com/photoshop Today we will implement the watermarking on images using php gd library. Intelligent watermarking means, apply a logo or a watermark image on another image by measuring [...]

3 Comments , , , , , , , ,