HOW TO: INSTALL COMPOSER ON LINUX MINT
About Composer A composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage…
PHP 7 Fundamental Tutorial for Beginners – PHP Break and Continue Statement
Break statement The break statement is used with the conditional switch statement and with the do, for, and while loop statements. When a break statement is encountered…
How to Defines PHP functions Arguments Global Values?
In this blog, I am going to Defines PHP functions Arguments Global Values. When it comes to functions you can name a function just like a variable…
How to Generate Random color Functions in PHP?
In this blog, I am going to start how to generate Random color Functions in PHP? we’re going to be talking about functions now functions really give…
How to Create alternating color code snippets in PHP?
In this blog, I’m going to give you the answer to how this is created using PHP, And then as I said it’s only just a few…
PHP 7 Fundamental Tutorial for Beginners – PHP Loop
What is Loops? Loops are used to execute the same block of code again and again, as long as a certain condition is met. The basic idea…
How to Create & Display dynamic HTML content using CSS challenge in PHP?
In this blog, I am going to explain How to Generate dynamic HTML content using CSS challenge in PHP. So, before you create a page which extension…
How to Create a Simple Login Authentication System in LARAVEL?Part-2
How to Create a Simple Login Authentication System in LARAVEL? Firstly, Visit this Blog Part-1. Step 15. Now add these classes within MainController file. Step 16. Create…
How can I sort arrays and data in PHP?
PHP Functions For Sorting Arrays In the previous chapter you’ve learnt the essentials of PHP arrays i.e. what arrays are, how to create them, how to view…
PHP 7 Fundamental Tutorial for Beginners – PHP Arrays?
What is PHP Arrays Arrays are complex variables that allow us to store more than one value or a group of values under a single variable name….
PHP 7 Essential Guide – PHP switch statement
In this blog I am going to explain PHP 7 Essential Guide – PHP switch statement. Switch statement is opposite to if elseif else statement which does…
PHP 7 Essential Guide- PHP adding to an array-
In this blog I am going to explain that how to adding array in PHP. So, as stated in the PHP documentation, if you’r only pushing a…
How to Create a Simple Login Authentication System in LARAVEL?Part-1
How to Create a Simple Login Authentication System in LARAVEL? Firstly, we’ll create a new project for this. Step 1. Go to XAMPP/htdocs folder -> right Click->Open Git…
How to define PHP variable type conversion operators?
In this blog, I am going to explain Variable Type & Type Conversion in PHP.variable type depends on the value of currently holds means when you declare…
PHP 7 Fundamental Tutorial for Beginners – PHP Switch…Case Statements?
What is PHP Switch…Case Statements Check Several Possible constant values for an expression. PHP If…Else Vs Switch…Case The switch-case statement is an alternative to the if-elseif-else statement, which does…
How to declare PHP variables output variables quotes and more?
In this blog I am going to to how to declare PHP variable output, PHP Variables Scope, PHP Global and Local Scope, PHP Global Keyword variable quotes…
How to show City List as per Country and State select in DropDown using AJAX in Laravel? Part-2
How to use AJAX in DropDown in Laravel? Example as in Country, State, and City. To Click Part-1 of its first blog. Now, we’ll start the next…
PHP 7 Fundamental Tutorial for Beginners – If, Else and Elseif Conditional Statements
PHP Conditional Statements Like most programming languages, PHP also allows you to write code that performs different actions based on the results of logical or comparative test…
How to show City List as per Country and State select in DropDown using AJAX in Laravel? Part-1
How to use AJAX in DropDown in Laravel? Example as in Country, State, and City. What is the DropDown? Create a dropdown box that appears when the…
How to create alternating row colors challenge in PHP?
In this blog, I am going to explain how to recreate alternating rows colors challenge in PHP. So, before creating a .php file in XAMPP/htdocs file and…
How to creating and accessing string function in PHP?
What is String in PHP? A string is a sequence of letters, numbers, special characters and arithmetic values or combination of all. The simplest way to create…
How to adding array in PHP in different ways?
In this blog I am going to explain that how to add array in PHP with different ways. I am talking about Arrays how different ways to…
How to implement CRUD functions in the Laravel PHP Framework? Part-3
How to implement CRUD functions in the Laravel PHP Framework? In previous blog Part-2, We have seen create() store() and index() functions. Step 18. Go to app/Http/Controller/CustomerServiceController.php and in that…
How to implement CRUD functions in the Laravel PHP Framework? Part-2
How to implement CRUD functions in the Laravel PHP Framework? In previous blog Part-1, We have seen that how we start to implement CRUD functions. Step 12….
PHP 7 Fundamental Tutorial for Beginners – PHP Data Types
The name itself indicating, data types means type of data. The values assigned to a PHP variable may be of different data types including simple string and…
How to implement CRUD functions in the Laravel PHP Framework? Part-1
How to implement CRUD functions in the Laravel PHP Framework? Within computer programming, the acronym CRUD stands for create, read, update and delete. Step 1. Create a…
Difference Between echo and print in PHP
Echo vs. Print PHP echo and print both are PHP Statements Both are used to displaying the output in PHP. What is echo The echo is a…
Echo And Print Statements In PHP
What is echo in PHP This statement is used to output the data to the screen or printing text on screen. The echo statement can output one…
How to Display Navigation Menus of our Custom Theme in WordPress? Part-8
How to Display Navigation Menus of our Custom Theme in WordPress? In blog Part-7, we have seen how to register Navigation Menus of our Custom Theme. We…
How to define constant in PHP?
what is constant in PHP? A variable whose value we cannot modify Constant means fixed. We cannot change the value which we have fixed as fixed later….
