MySQL Tutorial – MySQL UPDATE Command This lesson will teach us how to update our records in the database. The UPDATE command is used to update records in the table. Here is the general form of UPDATE command: UPDATE table_name…
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…
Joomla Core Modules
Joomla Core Modules Joomla Modules are small blocks of content that can be displayed anywhere on your Joomla site. Joomla module subcategories: Content Modules A content module allows the user to manage and display article and other information from the…
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…
MySQL Tutorial – How to Insert Multiple Records
Insert multiple records in a single query To insert multiple records in a single query, each record is enclosed in parentheses and is separated by a comma. Here is the syntax of inserting multiple records in a single query. INSERT…