Posts by Faruque Ahamed Mollick

Author Biographical Info: Not available

Adding HTML content dynamically using jQuery append() method

By Faruque Ahamed Mollick

Here in this tutorial, I am going to show you how to add HTML content dynamically using jQuery append method. The append method of jQuery actually adds specified content at the end.... Read More

Passing parameters to method in Java

By Faruque Ahamed Mollick

Today in this post I am going to tell you how to pass parameters into methods and then how to call the method with parameters in Java with simple example code. I am going to provid.... Read More

Get the image size (height and width) in PHP

Get the image size (height and width) in PHP

By Faruque Ahamed Mollick | September 27, 2017

In this tutorial, I am going to tell you how to get the size of an image using PHP. The code snippets I am going to show you will retrieve the height and width of a given image file path. There is a PHP function already available which will let you know the size of […] Read More

Parse JSON from URL using jQuery

By Faruque Ahamed Mollick

JSON is an organized and lightweight data format that uses for data interchanging. There are many websites today are sharing data with JSON format. Primarily this type of data for.... Read More

Making a simple JavaScript form validator

By Faruque Ahamed Mollick

In this tutorial, we are going to make a simple JavaScript form validator which will be used to prevent form submission if any one of the form input fields is empty. The HTML Befor.... Read More

Get country data on clicking on map – PHP source code

Get country data on clicking on map – PHP source code

By Faruque Ahamed Mollick | September 25, 2017

Here I am going to tell you about a web-based small web application that is built in PHP and used Google’s GeoChart API. I hope you will like this product. I am going to discuss all the features and functionality of this PHP based web application. Before I am going to discuss and review of this product […] Read More

Search for restaurants using Zomato API in PHP

Search for restaurants using Zomato API in PHP

By Faruque Ahamed Mollick | September 23, 2017

Zomato is a popular food delivering website where we can search for restaurants in various cities, order food online. They provide their services in several countries in the world. On Zomato, you can see the information and review of various restaurants. Well, as a developer, you can do many interesting apps using the API that […] Read More

Display an image from base64 code in HTML

Display an image from base64 code in HTML

By Faruque Ahamed Mollick | September 21, 2017

Base64 represents binary data for any file or attachment in an ASCII string format. This is a method where binary information encoded so that it can be sent easily where text-only communication is possible. With this process, the attachments like images and any other media file can be converted into text and then the text sent […] Read More