PHP Basic

PHP Introduction PHP stands for “PHP : Hypertext Preprocessor” is widely used general purpose open source scripting language. PHP was founded by Rasmus Lerdorf in 1994 but PHP entered into market in 1995. PHP is […]

PHP IF..Else..Elseif statement

PHP conditional statements are used for check or evaluate the different actions based on different conditions. The result of these conditional are either TRUE or FALSE. If the result is TRUE it means the condition […]

PHP Syntax

PHP script can be placed anywhere into the document with the PHP tags along with the HTML. Default extension for php file is “.php”. It uses built in php function “echo” to get the text […]

PHP – AJAX Search

AJAX = Asynchronous JavaScript and XML. Ajax is ideal for update the part in webpage without reload the whole page. It is used to communicate between webpage and web-server. Here we create a search box […]

Laravel Middleware

Laravel middleware is the mechanism that controls the workflow between request and response. When any request is fired, laravel middleware identifies it and processes it. According to the result, the middleware provides an appropriate response […]

Laravel Routing Tutorial

Laravel routing is an important topic of the laravel framework. The main functionality of the laravel routes is to redirect or map all application requests to the related controller. Routing acts as a bridge between […]