Search Results for:

How to handle WordPress WooCommerce Order

Hi, in this post going to see WordPress WooCommerce Order and Coupons and Reports portions in the admin panel. Coupon Management To create a coupon admin have to go to woocommerce->coupon menu from admin panel-> then add new->now give the coupon code, discount type coupon amount and expire date. Users can give the restriction and […]

Read More

How to handle WordPress WooCommerce Product Category

WooCommerce Product and Category is how to insert update and delete categories, tags, attribute, and product. so let us start WordPress woocommerce Product management. Insert update and delete product category Create a product category go to product->categories menu on admin panel now fill the form bu giving category name, give the slug, select the parent […]

Read More

WordPress WooCommerce Setting Menu (How to setup woocommerce)

Hi, to get the WordPress woo-commerce menu, first need to install the plugin woocommerce please install the plugin you can take help from how to install the plugin from the site. Now after activating the plugin, you will get the menu WooCommerce and Products. Now first need to set so go to woocommerce settings menu […]

Read More

How to use WordPress MailPoet Newsletters Plugin

Hi in this post going to show you how to Create MailPoet Newsletters Settings,  going to show you how to create a  newsletter using templates and how to manage the subscriber of newsletters. First, you need to install the plugin MailPoet Newsletter and after activation, the relevant menu MailPoet will appear on the left side […]

Read More

How to Use WordPress Contact Form 7 Plugin

To add a contact form 7 users have to first install the contact form 7 plugin, to know how to install a plugin go to plugin uses a portion of this site and then go to the menu Contact and then you will find a default form is already given by the plugin. Now click […]

Read More

How to Set Up WordPress

in this post, we are going to see the work of the Settings menu in WordPress admin panel it content the General, Writing, Reading, Discussion, Media, Permalink and Dashboard Access Settings of WordPress website. user van manage the content and visibility from that portion General setting The general setting content Site Title The tagline of […]

Read More

How to Import Export Data in WordPress Using Tools Menu

the work of Tools menu in WordPress admin panel:  WordPress Tools is a menu tab in the WordPress admin sidebar. It contains tools to perform some tasks like import-export data. first to install a WordPress tools user need to go to the tools menu you will find some text like press the button press this […]

Read More

How to create , edit , and delete users in WordPress

Hi, In this WordPress admin user tutorial we are going to learn how to add edit delete and manage WordPress user. In the WordPress user, there are Personal Options, Name, Contact Info, About Yourself and  Account Management portion. The personal options portion giving the permission for disable or enable the visual editor when writing by […]

Read More

How to install plugins in WordPress

Hi, WordPress plugin is some branch of code to add some extra code on WordPress. There are many plugin users can find from wordpress.org site there is 3 way to add a plugin to your WordPress site. Add a Plugin To WordPress site For adding a WordPress plugin go to plugins menu located at WordPress […]

Read More

WordPress How to install and handle and customise theme and handle menu, widget and edit files

WordPress appearance is the portion of the theme , widget, menu management from appearance we can edit the code of the theme also. Now I am going to show you one by one. First WordPress Theme In the submenu theme, there is the list of the installed themes from where a theme can be made […]

Read More

WordPress how to add , edit and delete and handle content of page

Like post the WordPress page handling is mostly similar, In this Post, we are going to learn how to add edit and delete a WordPress pages. For that, we have to go to the WordPress admin panel and then page menu. In that menu there are All Pages, Add New. Add a WordPress page To […]

Read More

WordPress how to handle Comments

Hi in this post we are going to see the WordPress comments system, mainly WordPress comment is given to a post and appear in the particulate single post, and also in the sidebar there is showing recent comment. Add WordPress comments to post While the user will open a post and if in the theme […]

Read More

WordPress How to upload images or files in Media and edit or delete

Hi, in this post going to learn about WordPress How to upload images or files or videos in Media menu the location of images or videos or any uploaded files. WordPress media used to show all the uploaded documents in one place and in this section, we are going to learn how to add edit […]

Read More

WordPress How to Post (Add, Edit, Delete Posts)

In this post, we are going to learn how to add edit and delete a WordPress post and category. For that, we have to go to the WordPress admin panel and then post the menu. In that menu there are All Posts, Add New, Categories and tag sub-menu. WordPress Post Category Management To manage WordPress […]

Read More

How to use WordPress Dashboard

In this post, I am going to show the overview of the dashboard of the WordPress admin panel. While you will open the WordPress admin panel you will see the left sidebar, It contains the menus of the dashboard, posts, media, pages, comments, appearance, plugins, tools, and settings we will discuss the menus one by […]

Read More
Admin Uses Introduction

Admin Uses Introduction

WordPress is an open-source content management system or cms, WordPress is popular to make a blog and blog-type websites, Using WordPress we can easily create or update or delete posts and pages of a website, also we can update the text, image, and much other content easily. In this WordPress Tutorials, we will be going […]

Read More
Connect PHP code with MySQL database and perform insert update and delete in wamp or xampp or lamp server

Connect PHP code with MySQL database and perform insert update and delete in wamp or xampp or lamp server

Today we are going to learn how to connect PHP code with MySQL database and perform insert update and delete in wamp or xampp or lamp server. This would require a piece of MySQL information and online development surroundings using MySQL, Apache and PHP and a straightforward text editor. The tutorial takes you through establishing […]

Read More
PHP Mail Function and Send Mail With Attachment

PHP Mail Function and Send Mail With Attachment

The mail sending process has become a commonly used process for any website, it may be used for the contact form or newsletter or a shopping purpose mail generated and sent from the website or system it may be through a crone job also. So PHP Mail Function provides us the functionality to send mail […]

Read More
PHP File Read, Write, Append and Delete

PHP File Read, Write, Append and Delete

In our previous post, we have learned how to upload files in PHP, in this post we are going to learn Read, Write, Append and Delete PHP file. In the case of PHP file function there is mainly 4 process and they are 1. Read File 2. Write File 3. Append File 4. and Delete […]

Read More
PHP File Upload – how to upload a file in php

PHP File Upload – how to upload a file in php

The PHP File Upload process is worked while a file is sent from an HTML form and after submission of the form the file is saved in a temp location ( $_FILES[‘image’][‘tmp_name’] ) then using the PHP function move_uploaded_file() you van be able to upload the file from temp location to a folder of your […]

Read More
PHP Include , Require , Include Once (include_once) and Require Once (require_once)

PHP Include , Require , Include Once (include_once) and Require Once (require_once)

If you need to separate a file into many parts and then want to merge them into one PHP file then you need to use PHP include, and they are: 1. include 2. include_once 3. require 4. require_once PHP include This is used while needed to include a file into another file, ** Include a […]

Read More
PHP Functions

PHP Functions

A PHP function is used to execute a branch of code when needed from the pages where the function is included, and the PHP functions can call several times, A normal PHP function to write a normal PHP function first declare the function then write some code inside the function or inside the scope and […]

Read More
PHP Operators

PHP Operators

PHP Operators are the characters used for mathematical, Assignment, Comparison, Logical or Concatenation Operations. PHP Concatenation Operators A dot (.) is used for concatenation two or more string. Example: <?php $srr = ‘World’; echo “Hello” . ” ” . $srr; // it will print Hello World ?> PHP Mathamatical or Artithmetic Operators the arithmetic operators […]

Read More
PHP For Loop and Foreach Loop

PHP For Loop and Foreach Loop

The PHP for loop and Foreach both loop is used for executing a portion of code several time, the PHP for loop is mainly used for executing a branch of code with counter with increment or decrements by a particular integer value and Foreach loop is used for getting values from the array and work […]

Read More
PHP While Loop and Do While Loops

PHP While Loop and Do While Loops

Both PHP while loop and do-while loop is used to execute bulk ok code several times and using that we can execute the bulk of code several time which is inside the scope. Learn everything you need to know about PHP’s While and Do-While loops. From syntax to practical examples, this tutorial equips you to […]

Read More
PHP array tutorial

PHP array tutorial

This tutorial will delve into the exciting world of PHP arrays, providing you with the essential knowledge to manage your data effectively. You’ll discover: Array Creation & Initialization: Learn how to create arrays using various methods and initialize them with different data types. Accessing & Modifying Elements: Understand how to access and modify array elements […]

Read More
PHP Switch Case

PHP Switch Case

PHP Switch Case is an if-else condition and the only difference is the writing style, it is mainly used when there is a bulk amount of if and else if conditions, The switch statement in PHP allows you to execute different code blocks based on the value of a variable or expression, similar to a […]

Read More
PHP If Else Condition

PHP If Else Condition

PHP if else condition is the most important part and also has too many variations, so first we are going to discuss basic of PHP if else condition, and then will check nested if-else, writing style of if-else condition, etc. Basic of PHP if else condition an if condition is mainly written by if keyword […]

Read More

PHP Session and PHP Cookies

The PHP session and PHP cookies are a very mandatory portion to develop a PHP project. The session and cookies both are used to store information and use that information throughout all pages or functions. What is the PHP Session? A PHP session is a process to store data in the server, for a local […]

Read More

How to recevethe data sent from a HTML form in php by using php form variable get , post or request method?

  To generate business online and to get connected with business and website user form submission is the ultimate way. But form after submission of the form has to receive the data and use them also, so in this post we are going to learn how to receive the data sent from a form in […]

Read More