Posts by Faruque Ahamed Mollick

Author Biographical Info: Not available

JavaScript string replace() method | Replace string part

By Faruque Ahamed Mollick

JavaScript has an in-built string.replace() method that is used to replace part of any given string with another string or a regular expression. Here, we just have to pass a value .... Read More

Object Detection in PHP with 15 lines of code

Object Detection in PHP with 15 lines of code

By Faruque Ahamed Mollick | October 21, 2019

Object Detection is a powerful deep learning application used in many industries in this modern time. There are lots of processes and algorithms run to detect an object accurately. So surely, it needs to write lots of codes to develop an object detecting system in real life. But wait… In this article, I will show […] Read More

Generate QR code in JavaScript quickly

Generate QR code in JavaScript quickly

By Faruque Ahamed Mollick | October 19, 2019

If you are reading this article, then you must be familiar with the QR code. QR code stands for Quick Response code. It is actually a trademark for a type of matrix barcode. If you are familiar with JavaScript then you may be interested in QR code generation using this programming language on the browser. […] Read More

Merge two or more arrays in JavaScript

By Faruque Ahamed Mollick

Did you ever think about merging two arrays into one array in JavaScript that contain all the element of those arrays? Or do the same thing with more than two arrays? Well, in this.... Read More

Get all values from multiple checkboxes in PHP

By Faruque Ahamed Mollick

In this article, I am going to share a PHP trick with you which going to be very useful. Developers often have to deal with multiple checkboxes when they work in a project in PHP. .... Read More

Get Base64 string of an image in JavaScript

By Faruque Ahamed Mollick

The Base64 format of an image is the encoded string of that image with proper printable characters only. Loading base64 image on the web page can speed up load time. It can also he.... Read More

Check if a value exists in an array in PHP

By Faruque Ahamed Mollick

Here we are going to see an example where we will check if a specific value exists in an array or not in PHP programming language. This task is going to be quite easy. So let’.... Read More

Change the src of an HTML img tag in jQuery

By Faruque Ahamed Mollick

We all know that we can show an image on a web page using the HTML <img> tag just like you can see below: <img src="path/image1.jpg" alt="image"> Now I will show you ho.... Read More

Related Posts