PHP if…else…if statement if…elseif….else statement – use this statement to select one of several blocks of code to be executed. The if…elseif….else statement This statement is used to select one of several blocks of code to be executed. The if..else…
Tag: PHP
PHP if…else statement
PHP if…else statement if (…else) statement – use this statement if you want to execute a set of code when a condition is true (and another if the condition is not true). The if…else Statement An if statement that includes…
PHP if statement
PHP if statement – this statement is used to execute a specific programming code if a specified condition is true. The if statement Used to execute a specific programming code if a specified condition is true. An if statement can…
How to Install Modules in Drupal
Installing Modules in Drupal In this lesson we are going to learn how to install a Module to add functionality in our Drupal site. Modules in Drupal can provide a wide range of additional functionality to your site. You can…
The Frontend and Backend of Joomla
Joomla Frontend and Backend After you have successfully installed your Joomla site on your local computer, you actually have to sites and these are: Site Frontend (the public site) – it is where your visitor see, interact and navigate with…
How to Manage Themes in Drupal
Manage Themes In this lesson we are going to learn the process of changing the looks of your Drupal site by changing and installing new themes. Changing a theme: 1. Login to your Drupal site using the administrator account. 2.…
How to Add User Account in WordPress
Adding User Account in WordPress In this lesson we are going to learn how to create user accounts in WordPress. To add user account: 1. Login to your WordPress site using the administrator account. 2. Click Add New in the Users tab…
PHP String Variable
PHP string variable is variable that is used contains text or characters. In this lesson we are going to learn how to store a string in a variable and use a string directly into a function. Let’s see some example…
PHP Variables
PHP Variables In this lesson we are going to learn how to declare a variable in PHP. A variable is something that can handle a piece of information. Variable in PHP can store values such as text and integers. The…
WordPress Dashboard
WordPress Dashboard is the page that you’ll see when you log into your WordPress administration area. In dashboard you are allowed to manage and perform several tasks, it also gives an overview of what’s happening and displays the statistics in…