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,…
How to Manage Users in Drupal
In this lesson we are going to learn how to manage user accounts in Drupal. After you have successfully installed a Drupal site on your local machine, your account is automatically given all the privileges to administer the site. It…
Installing Drupal on WAMP server
How to install Drupal on WAMP server? In this lesson we are going to learn how to install a Drupal site on a WAMP server. Installing WAMP server 1. We have to setup first our WAMP server on our machine.…
Installing WordPress on WAMP server
How to install WordPress on WAMP server? In this lesson we are going to learn how to install a WordPress on a WAMP server. Installing WAMP server 1. We have to setup first our WAMP server on our machine. Click…