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 a string is…

Read more »

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 manipulate Arrays by…

Read more »

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 we have to…

Read more »

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. Now, Go to…

Read more »

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 numeric types to…

Read more »

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 DataBase CustomerService. Step…

Read more »

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 statement i.e used…

Read more »

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 or more strings….

Read more »

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 have to create…

Read more »

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. The definition of…

Read more »

Manipulation of dates and times in PHP with examples.

Here we are going to discuss about the PHP Date and times. how can we call current date and time in our code. There are nearly fifty date and time…

Read more »

How to Register Navigation Menus of our Custom Theme in WordPress? Part-7

How to Register Navigation Menus of our Custom Theme in WordPress? What are the Navigation Menus? Navigation-Menus are customizable menus in your theme. They allow users to add Pages, Posts,…

Read more »

How to Define a Variable in PHP

what is variable in PHP Variables are used to keep data in one place. Such as string of text numbers, etc. The value of a variable can change on the…

Read more »

How to Create a Custom Page of Custom Theme in WordPress? Part-6

How to Create a Custom Page of Custom Theme in WordPress? Why to use Custom Page? Customized page templates allow you to individualize any part of your WordPress site without affecting the…

Read more »

PHP 7 Fundamental Tutorial for Beginners – PHP Syntax

Standard PHP Syntax One of the first scripts is run on the server, and the simple result results are sent back to the browser. Basic PHP Syntax one PHP script…

Read more »

How to Create a Page in WordPress? Part-5

How to Create a Page in WordPress? What is a page in WordPress? WordPress allows us to create pages by default and its theme controls the appearance of our pages…

Read more »

How to setup PHP in localhost for server-side scripting?

In this blog I am going to start with the beginning, So even if you are not aware to run PHP on your local machine you to it just following…

Read more »
How to autoload php class

Autoloading Classes in PHP

1. What are Autoloading Classes? Many developers writing object-oriented applications create one PHP source file per class definition. One of the biggest annoyances is having to write a long list…

Read more »

How to Work Stated on PHP

Install XAMPP on your PC to quickly create web applications with PHP database. If you want to create a dynamic web page using the first step, then first you write…

Read more »

How to create a WordPress custom theme? Part-4

How to create a WordPress custom theme? It’s looking improper yet, therefore we have to set the path of CSS and JavaScript to make it on proper website. So, go…

Read more »