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…
MySQL Tutorial – INSERT INTO Command
To add new record in the database, use the INSERT INTO command. Here is the syntax of INSERT INTO command: INSERT into table_name (column1, column2….) VALUES (value1, value2…); Where: table_name is the name of the table where you want to…
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…
Joomla Core Components
Joomla Components are the core element that adds functionality to your Joomla site. Joomla components add functionality and features to your Joomla site from simple guestbook component up to ecommerce component such as Virtuemart. Joomla core components include Content, Banners,…