Tag Archives: PHP

Twitter clone using MooTools/PHP

Twiiter is one of the popular micro-blogging portal which almost everyone who is connected to the web would have heard of & interested in. The power of Twitter is its simplicity & the neat UI which makes it easier to … Continue reading

Apple.com style search suggestion using jQuery

Create a fancy apple.com-style search suggestion using jQuery/CSS/PHP. This example makes use of several techniques: MySQL (for the database), HTML/CSS for styling, PHP for retrieving the data and jQuery for the AJAX request. Resource: Sample | Tutorial

Amazing image manipulation using Javascript & PHP

Phototype script is a client/server-side script which allows you to create amazing image manipulation techniques like photoshop from your browser. This script makes use of Prototype & PHP/GD Resource: Sample | Tutorial

Image cropper using PHP

Kroppr allows you to manipulate images with features such as Rotate, Resize, Crop, Save it to your hard drive. This script would be useful in sections where users are allowed to upload their profile pics, avatar etc.. Resource: Sample | … Continue reading

Using ajax to validate forms – jQuery & PHP

Use ajax to validate the fields in forms before the user selects submit thereby reducing the frustration for the user to recheck fields & also enhances the usability of the form. This tutorial uses jQuery & PHP to validate forms … Continue reading

Reddit-style Voting – PHP, MySQL & jQuery

Create a Reddit-style voting system using PHP, MySQL & jQuery. This tutorial helps in understanding the basics of using jQuery, MySQL, PHP together & building a voting system. Resource: Demo | Tutorial

IP address to geographic details – PHP & MaxMind

Snippet to convert an IP address into geographical details which can be put to various uses such as plotting visitors to your website on a Google map. This snippet uses PHP & GeoIP API from MaxMind. Resource: Sample | Tutorial