How to Validate IPv4 Address in PHP

Validate IP Address in PHP

Today I am going to tell how to validate IPv4 / IP address using PHP. Simple function which will used to check client IP address is valid or not. Steps to validate IPv4 Address in PHP Split IP address into segments  by dot(.)  using explode function Make sure that there … Read more

Facebook Timeline Wall Script 2.0 with PHP, Mysql, jQuery

Facebook Timeline Wallscript

Hi Guys, Today I am going to share my facebook timeline wall script version 2.0 with more interesting features. I have added live commenting system with smileys option. I had received lots of request from my visitors to update the existing facebook wallscript version 1. So today I am very … Read more

Facebook Like Tooltip using Jquery & CSS

facebook tooltip with Jquery

Facebook like jQuery tooltip plugin with a flexible design that’s easy to customize. Implementation is straightforward and is easy to customize, has smooth fade-ins and fade-outs, and even gives you a number of different ways you can use those tooltips (including complex content). Download  View Demo Unique Features Checks for … Read more

Top 10 Responsive Frameworks for Web Developers

Cool Kitten framework

Today I am going to share some interesting stuffs. I had googled & come up with nice css framesworks that are really useful when its comes to responsive design. Groundwork CSS Built from the ground up with Sass, GroundworkCSS is a fully responsive framework that features an incredibly flexible, nest-able  fluid grid system … Read more

How to delete multiple rows from a table with jQuery?

Removing multiple rows from a table with jQuery

Today I am going to tell you how to delete multiple rows from table with jquery with few lines of code. I hope this tutorial will be really useful in your web projects during handling data’s rendering in table. Deleting single row in table is painful when you have more … Read more

How to Get Url Parameters & Values using jQuery

In this post, I would like to share a little jQuery code snippet that used to get url parameters and their values more convenient. Recently, while working on one of my projects, I needed to read and get url parameter values of the current page that was constructed and sent … Read more

How to build a simple web service API in php

PHP Web Services API

People are looking for a wide variety of data in web sites which means most of the web applications today are not a single stand alone application.  Web services come into picture when different applications need to link their data. For example your web site can publish its data to … Read more

Change Window/Document Title with jQuery

Today I am going tell  how to dynamically change document’s / window’s title using JavaScript and jQuery. The best way to change the document title is to use native javascript api document.title. document.title = “New Window Title by Javascript”; The equivalent jQuery code of js code above. $(document).prop(‘title’, ‘New Window Title … Read more