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

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

Convert Plain Text into Clickable HyperLink – PHP

preg_replace – Searches $subject for matches to $pattern and replaces them with $replacement. By using the above preg_replace function I have created a simple function which will first find urls inside text and convert all into clickable links Please check my Top 10 code snippets in PHP  PHP Code : Usage … Read more