How To Start Laravel Framework

Introduction of Laravel-: Laravel is a PHP framework. Laravel is a most php framework. it was release in June 2011. Current version of laravel 8.0. It’s developer name was Taylor Otewell. It was written in php. Laravel is use for creating web app(for creating a website and CRM,ERP) and API. Laravel is a open source … Read more

how to create a session in php

What is Session in php –:Cookies are stored on browser window means it stored on user side.  it is possible for a hacker to easily hack the cookie content to insert potentially harmful data in your application that might break your application. Also every time the web  browser requests a url to the server.All the … Read more

how to create cookies in php

What are the  Cookies -: Cookies are small files which are stored on a user’s computer.Cookies are store on user side in the computer. They are designed to hold a modest amount of data specific to a particular client and website and can be accessed either by the web server or the client computer. Cookie’s are … Read more

file handling in php

What is File Handling in php -: A file represents in a sequence of bytes on the storage disk where a group of related data’s are  stored. File is created for permanent storage of data. php provide a number of functions that helps to perform basic file operations. These are the function  in php use the file handle … Read more

function in php

Php function -: Like any other language function are same to other function.The real power comes its from php function. Php has more then 1000 function. A function is a small code which takes one more input in the form  of parameter and does some processing and return a value. In other words we can say … Read more