Category Archives: php

How to Create Component in Laravel

Introduction Laravel Component -: we know that the laravel is a php framework. When we install laravel project all the package are install automatically. Component are piece of code that is use in multiple file. for example if we are creating a header file then we give the same design in the many page’s in… Read More »

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 »

Category: php

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 »

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 »