Mohd Sohail

Mohd Sohail

Introduction to Laravel – Beginner Series

Introduction to Laravel - Beginner Series Featured Image
Laravel is one of the most popular PHP frameworks for developing web applications a lot faster and easier. I hope you’ve already worked with PHP and know how the stuff work. You need to take care of everything yourself including database connections, securing database queries before hitting the server database or develop your own functions to handle certain tasks in your application.

Top 5 PHP Frameworks in 2021

Top 5 PHP Frameworks Featured Image
PHP was built for the web. You can simply create a PHP website using just one file. No additional libraries needed, no frameworks needed. Just raw PHP code. However, when working on bigger projects it is always suggested to use some framework to modularise your code.

How to Use CSS in HTML and How to Use JavaScript in HTML

How to Use CSS in HTML and How to Use JavaScript in HTML
HTML in itself is very static and simple, it cannot be used to create dynamic webpages. User interaction is not possible via HTML itself. For this, we need JavaScript which integrates very well with HTML. Similarly, writing attributes for each element make the entire code a spaghetti. To avoid this we use CSS(Cascading Style Sheet), that helps in separating the style part from the HTML part.