What is Routing & How to create routes in Laravel?
Routing is one of the essential concepts in Laravel. Routing in Laravel allows you to route all your application requests to their appropriate controller. The main and…
“if your php page is submitting directly without filling data fields to the next php page in crud operation.” How can you fix it?
If you’re working on a Crud operation in PHP and directly submitting your data insertion php page with or without filling data fields to the next operation…
What is Laravel and it’s features?
Laravel is a free, open-source PHP web framework, intended for the development of web apps following the model-view-controller architecture, it allows developers to write organized and structured…
What are Web Frameworks?
It is a software code libraries and tooling providing a standard way to build & deploy we apps, it abstract repetitive tasks away and provide code reusability.it…
How to hamper the “Confirm form resubmission” dialog box on the localhost PHP file?
Suppose, you’re doing crud operations through PHP and inserting certain sorts of data into the database through a localhost PHP file. And you find the Confirm form…
What is selector and universal selector?
Universal Selector A universal selector is a selector that matches any element type’s name instead of selecting elements of a particular type. The universal selector becomes helpful when…
what is Display property in CSS?
CSS display is the most important property of CSS which is used to control the layout of the element. It specifies how the element is displayed. Every…
Basic Styling in Buttons in CSS?
CSS properties, we can style the buttons. Buttons help us to create user interaction and event processing. They are one of the widely used elements of web…
How to use in image and padding in CSS?
Image The styling of an image in CSS is similar to the styling of an element by using the borders and margins. There are multiple CSS properties…
What are basic Properties in CSS?
We have four basic propertues in CSS(Cascading style sheet) Text Properties List Properties Border Properties Font Properties Text properties PROPERTY Description color Sets the color of a…
What is comment in CSS?
CSS comments are generally written to explain your code. It is very helpful for the users who reads your code so that they can easily understand the…
How to add CSS in HTML?
CSS is added to HTML pages to format the document according to information in the style sheet. There are three ways to insert CSS in HTML documents….
What is CSS and How to use CSS?
Cascading style sheets (css) is a style sheet language used for describing the look and formatting of a document written in markup language, It provides an additional…
Use of PUSH and POP in javascript?
PUSH and POP is used to perform insertions as well as deletions from the object. array_push is used to add value in the array(it always add new…
What is Multidimensional array in javascript?
multidimensional arrays in JavaScript is known as arrays inside another array. We need to put some arrays inside an array, then the total thing is working like…