What is AJAX AJAX (Asynchronous Javascript and XML), enables websites to dynamically fetch and display content without the user moving away from the current page. This makes more interactive user experience, and can speed things up too since a whole new webpage needn’t be reloaded. This means that we can update a part (or parts) … Continue reading WordPress Ajax
Month: September 2018
What is Middleware In Laravel, Middleware is the mechanism to apply any type of filtering you may need to HTTP requests to your application. Middleware works between request and response of our application.It sits between Request and Response like a firewall that examine whether to route a request.Laravel comes with several inbuilt middlewares like EncryptCookies … Continue reading Laravel Middleware
What is Phalcon: Phalcon is an open-source framework of PHP programming language. It is based on Module View Controller (MVC) pattern. Phalcon is the first framework that implements ORM in C-programming language. It is a combination of PHP and C language. Phalcon is developed by Andres Gutierrez and his group of collaborators. Phalcon is highly … Continue reading Phalcon Introduction
Laravel Route is a way of creating a request URL of your application. These URL do not have to map to specific files on a website. The best thing about these URL is that they are both human readable and SEO friendly. Routing is a core concept in Laravel, and it works a little differently … Continue reading Laravel Routing