Following are steps to install laravel in localhost server: Step 1: Visit the following URL and download composer to install it on your system. https://getcomposer.org/download/ Step 2: Open command prompt and browse to web server root directory or localhost folder (Assuming you have installed WAMP server in C:\wamp , open C:\wamp\www). Step 3: Type the following … Continue reading Laravel Installation
Category: PHP Frameworks
A PHP framework provides the basic structure and components to build web applications.
Followings are list of basic Concepts in Laravel: Routing Controllers Views Blade templating Requests and Responses Models & Migrations Middleware Eloquent ORM Routing: Routing means to accept the request and redirect it to appropriate function. Routing is a core concept in Laravel, and it works a little differently than some of the frameworks of the … Continue reading Laravel Basic Concepts
Followings are steps to create static web pages in Codeigniter: 1.The first thing in creation of static page is setting up controller For this you have to create a file pages.php in CodeIgniter/application/controllers i.e. the path of pages.php will be CodeIgniter/application/controllers/pages.php. Write the following code inside pages.php file: 1 2 3 4 5 6 7 … Continue reading Create Pages in Codeigniter
Question: What is Laravel? Laravel is a open-source PHP framework developed by Taylor Otwell used for Developing the websites. Laravel helps you create applications using simple, expressive syntax. Question: What are Advantages of Laravel? Easy and consistent syntax Set-up process is easy customization process is easy code is always regimented with Laravel Question: Explain about … Continue reading Laravel Interview Questions and Answers
Pagination is one of the most frequently used features for web applications. Wherever we have a bunch of data and need to show them as a list, we require pagination to prevent hundreds/thousands of data in a single page. As a robust framework, codeigniter provides very efficient way to handle it with its integrated … Continue reading Pagination In Codeigniter
Creating Classroom Management System Using Codeignitor, Here is Code For Develop App: Firstly Create Table Named student Inside Codeignitor Database CREATE TABLE IF NOT EXISTS `student` ( `id` int(11) NOT NULL AUTO_INCREMENT, `s_name` varchar(64) DEFAULT NULL, `p_name` varchar(64) DEFAULT NULL, `address` varchar(128) DEFAULT NULL, `city` varchar(32) DEFAULT NULL, `state` char(2) DEFAULT NULL, `zip` char(10) DEFAULT … Continue reading Codeigniter CRUD Application
What is Laravel? Laravel is a free, open source PHP web application framework, designed for the development of model–view–controller (MVC) web applications. Laravel is released under the MIT License, with its source code hosted on GitHub. Laravel is a web application framework with expressive, elegant syntax. Laravel attempts to take the pain out … Continue reading Laravel Introduction
What is Zend Framework? Zend Framework is open source full-stack PHP framework created by Zend Technologies for developing web applications and services. A framework is some kind of a library, a piece of software (also written in PHP) providing web developers with code base and consistent standardized ways of creating web applications. Zend Framework uses … Continue reading Zend Introduction
What is Symfony? Symfony is a set of PHP Components, a Web Application framework, a Philosophy, and a Community — all working together in harmony. Symfony is a PHP web application framework for MVC applications. Symfony is free software and released under the MIT license. The first version of symfony was released in October 2005 … Continue reading Symfony Introduction
What is Yii Yii is a high performance, component-based PHP framework for rapidly developing modern Web applications. The name Yii (pronounced Yee or [ji :]) means “simple and evolutionary” in Chinese. It can also be thought of as an acronym for Yes It Is! What is Yii Best for? Yii is a generic Web programming … Continue reading Yii Introduction