PHP Class to Get Weather Data Using OpenWeatherMap API

By Faruque Ahamed Mollick

OpenWeatherMap is a popular weather data API provider from where you can get the weather data for current weather and also weather forecast data for a particular place or city or t.... Read More

Java Program to Print Star Triangle Pattern Using for Loop

By Faruque Ahamed Mollick

Loops are so important for any types of programming language. for loop in java is so useful. You can use for-loop if you need to repeat a particular task for a specific number of .... Read More

Understanding do-while loop in java language

By Faruque Ahamed Mollick

A do while loop in java is just like a while loop but the main difference between while and do-while loop is that do-while loop is guaranteed to execute the loop at least one time.... Read More

How to get HTML form data in PHP variable?

By Faruque Ahamed Mollick

HTML form used to get input from users on web pages. In most of the times, it is necessary to take the form data in a PHP variable. Today in this post I am going to tell you how yo.... Read More

Simple Java Code To Read A File Using BufferedReader

By Faruque Ahamed Mollick

Hello, friends. I am here again with another simple Java example code. Are you trying to read the text of a file? If yes, then this post may give you the solution. Java BufferedR.... Read More

How to create object of a Java class?

By Faruque Ahamed Mollick

Java is almost 100% Object Oriented Programming language. Whatever you need to do in Java, you have to create Class. In this post, I am going to tell you how to create the object i.... Read More

Read meta description and title tag of a web page using PHP

By Faruque Ahamed Mollick

Meta description and title tag are two important SEO parameter of any type of site. Every web page that needs to be rank better on search engines, must have meta description tag an.... Read More

Getting weather data from OpenWeatherMap API using PHP

By Faruque Ahamed Mollick

OpenWeatherMap is a weather data provider which provide the weather stats data for a particular place that may be a city or town. You need to get OpenWeatherMap API from their sit.... Read More

Related Posts