Posts by Faruque Ahamed Mollick

Author Biographical Info: Not available

Value To Visual Star Rating in PHP Using Font Awesome Star icons

By Faruque Ahamed Mollick

Today we are going to see a nice PHP trick. Here in this tutorial, we will see how we can create visual star rating depending upon the value from 0 to 5 in PHP and using the font a.... Read More

Change the browser URL on click without loading the page in JavaScript

By Faruque Ahamed Mollick

Here in this post, we are going to see how to change the URL of the browser in JavaScript without loading a new page or reloading the page again on click. Here we are going to crea.... Read More

Check if a string contains a particular word using PHP

By Faruque Ahamed Mollick

In this PHP related post, we are going to see how to check if a string contains a particular word inside it. We are going to do it in PHP. We may be needed to find the availability.... Read More

Execute and calculate string as a mathematical equation in PHP

By Faruque Ahamed Mollick

Suppose we have a string of mathematical expression and we need to calculate and then get the value of the expression using PHP. How can we do it? Now, we are going to learn how to.... Read More

Popup notification using JavaScript and CSS that will hide after a certain time

By Faruque Ahamed Mollick

We often find popup notifications on many websites or web-based front-end application that hides after a certain amount of time automatically. Today we are going to make our own po.... Read More

Make an HTML5 video in slow motion using DOM playbackRate property

By Faruque Ahamed Mollick

Here in this tutorial, you are going to learn how to control the playback speed of an HTML5 video to give it a slow motion effect. Let’s first write our HTML code: <video .... Read More

Disable HTML button after the first click on it in JavaScript

By Faruque Ahamed Mollick

There are situations when you need to prevent a button from clicking on it on a web page after the first click. For example, on a registration form if we allow clicking multiple ti.... Read More

How to delete or remove array element in PHP?

By Faruque Ahamed Mollick

We can delete or remove array element from an array easily. Using the unset() PHP function, we can delete or remove one element from an array. We can delete multiple array elements.... Read More