Top 5 Basic Programming Question for interview purpose in JS.
Q1. Write a program in JavaScript that accept two integers and display the larger. Ans. code :- Q2. Write a JavaScript for loop that will iterate from…
JAVA SCRIPT VARIABLE AND DATATYPE.
What is Variable ? Variable is just like a container which store the value into it . ex- var x=6; let y=x+z; In above example x and…
JavaScript Intro And Basic
JavaScript JS is a part of web page that’s defines all the action perform on the web pages. JS is a programming language with oop concepts. JS…
jQuery Basic
jQuery is a JavaScript library. The purpose of jQuery is to make it much easier to use JavaScript on the website. jQuery syntax is tailor made for…
Blade in Laravel
Blade is the simple,yet powerful templating engine that is included with laravel. Blade does not restrict you from using plain php code in your templates. Blade templates…
CRUD USING QUIRY BUILDER IN LARAVEL.
We are performing crud opertion using quiry builder in laravel STEP : 1 Create Laravel project by running this command in terminal CMND :– Laravel new project_name…
Controller In Laravel
Controllers can group related request handling logic into a single class, Instead of defining all of your request handling logic as closure in route files ,you may…
LARAVEL ROUTING
All Laravel routes are define in route files , which are located in the route directory ,These file are automatically loaded by the framework. The most basic…
MVC (MODEL VIEW CONTROLLER)
MVC stands for Model–view–controller. The MVC is an architectural pattern model that seprates an applications into three logical components.(Model , View, Controller) MVC was first introduce in…
Intro to laravel
What is Laravel ? Laravel is php web frame-work use in backend ,Laravel has a very rich set of features which will boost the speed of web…
Performing CRUD operation through php mysql
CRUD is an acronym for Create, Read, Update, and Delete. CRUD operations are basic data manipulation for database. In this we create a simple PHP application to perform all these operations…
Responsive website Using Bootstrap
What is Bootstrap? Bootstrap is the most popular CSS Framework for developing responsive and mobile-first websites. Bootstrap is an HTML, CSS & JS Library that focuses on simplifying the…
Registration Form using PHP.
Creating a registritaion form in php using $_POST method First we create a html page containning form in it with the helps of form tag. Add some…