Mysql Table Editor

Mysql Table Editor

Posted by Sajith M.R in php, php source code on 04. Jun, 2009 | 2 Comments

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 code. 
You [...]

Contact Grabber

Contact Grabber

Posted by Sajith M.R in Downloads, php, php source code on 06. Nov, 2008 | 38 Comments

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, [...]

Pagination in Ruby on Rails

Posted by Sajith M.R in ruby on 02. Nov, 2008 | 1 Comment

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 this plugin using gem
gem install [...]

Intelligent Watermark (php + gd)

Intelligent Watermark (php + gd)

Posted by Sajith M.R in Downloads, php, php source code on 09. Aug, 2008 | 2 Comments

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 the color [...]