Web Learning Blog

A blog about web development, programming, and technology

Welcome to Web Learning Blog

Tutorials on Web Development, Programming & Technology

All Posts

Javascript map, reduce and filter

December 23, 2022

Javascript map, reduce and filter functions are some of the useful array functions in javascript. These are the higher order functions which takes a callback...

Working with classes in typescript

November 05, 2022

Working with classes in typescript is essential to write readable and reusable code. In this short article, we will understand classes in typescript in simplest...

Remove public from Laravel URL

April 28, 2018

By default, We browse laravel application by appending public on URL. If you are using shared hosting environment, sometimes it is difficult to configure your...

Dependency Injection in PHP

April 01, 2018

Dependency injection in PHP is a handy technique to keep the code maintainable and re-usable. While coding our PHP classes, we often come to a...

Inheritance in PHP

March 03, 2018

Inheritance in PHP is useful when we need to create classes with some common, while few contrasting behaviors. In such case, we create a parent...

Learn OOP in PHP

February 22, 2018

If you want to learn OOP in PHP then it is a good step towards making yourself an expert PHP developer. In this post, I...

AngularJS ng-repeat

January 27, 2018

AngularJS ng-repeat is a useful concept in any of the AngularJS based app. AngularJS ng-repeat directive is used to iterate through a JSON and build...

Important String Functions in PHP

January 13, 2018

Some functions are very common and we use them frequently in our projects. No matter which CMS or Framework we are using but as long...