Creating Section in Joomla In this lesson we are going to learn how to create a Section in Joomla. Section in Joomla is container in which you can manage your categories. You must first create a section in order for…
WordPress Tutorial – Managing Posts in WordPress
WordPress: Managing Posts In this lesson we are going to learn how to manage posts in WordPress. Posts are the main part of a blog. Every article that you publish in your blog will be considered as a post. Usually…
Joomla Control Panel
Joomla Control Panel Joomla Control Panel is the main administration interface in the Back-end part of your Joomla site. It is the page displayed when a Manager, Administrator, or Super Administrator logs in to the Joomla’s Back-end site. The Control…
PHP Tutorial – PHP Function
PHP Tutorial – PHP Function In this lesson we are going to learn how to create a function in PHP. A function is a block of codes that performs a particular task which can be executed anywhere in the page…
PHP Tutorial – PHP Arrays
PHP Tutorial – PHP Arrays An array is a special variable that can store multiple values in a single variable. The elements of the array are accessed via an index number, with the first element starting at zero. An array…
MySQL Tutorial – MySQL SELECT command
MySQL SELECT command is used to select record in a table. SELECT command is one of the most useful commands in SQL. The syntax of SELECT command: SELECT column_names FROM table_name; Here is our database table: (employee_record) [TABLE=3]
Enable/Disable Folder Options using Group Policy Editor
Enable/Disable Folder Options using Group Policy Editor In this tutorial, we are going to learn how to enable/disable Folder Options using Group Policy Editor (gpedit.msc). Group Policy Editor – This snap-in allows you to edit Group Policy Objects which can…
PHP Tutorial – for loop
The for loop The for loop is used to execute a set of statements for a certain number of times. Syntax: for (init; condition; increment/decrement) { code to be executed; } Components of for loop: init: set a counter variable…
PHP Tutorial – do while loop
The do while loop In do while loop the statements or conditions are executed first then that condition is evaluated, the loop will continue while the condition is true. Syntax: do { code to be executed; } while (condition); Example:…
MySQL Tutorial – MySQL DELETE command
MySQL Tutorial – MySQL DELETE command The DELETE command is used to delete records in a table. The syntax of DELETE command: DELETE FROM table_name WHERE [conditions]; Note: The where clause in the delete command specifies which records should be…