Text Size
Sunday, May 20, 2012
Get a look down
JavaScript >> Displaying items by tag: Joomla
Displaying items by tag: Joomla
Here's how you can get the first N elements of an array, it's so simple with the use of array_slice :
1
2
3
4
5
6
7
8
9
10
<?php
// Array
$myArray = array("bird", "dog", "cat", "horse", "lizard");
 
// Get the 2 first elements
$output = array_slice($myArray, 0, 2);
 
// Result
// This will give an array with elements : "bird", "dog"
?>
Published in Code snippets
Tuesday, 17 January 2012 11:42

How to keep putty connection alive

Users of Windows environments often use the PuTTY client for their connections with Linux, it allows them to have direct access to the SSH server to perform bash command line.

Such access facilitates surely the task for network administrators, developers or even the webmasters.A command line that runs in a few seconds often avoids long working hours.

Published in General
Sunday, 01 August 2010 10:41

Video : Joomla 1.6 for developers

This video looks at the many of the changes in Joomla 1.6 that developers need to be aware of as presented by Andrew Eddie on 15 May 2010, a few days before the Beta 1 release.  This is part 3 of 3 in a series of in-depth talks on Joomla 1.6.
This video looks at the many of the changes in Joomla 1.6 that developers need to be aware of as presented by Andrew Eddie on 15 May 2010, a few days before the Beta 1 release.  This is part 3 of 3 in a series of in-depth talks on Joomla 1.6.
This video looks at the many of the changes in Joomla 1.6 that developers need to be aware of as presented by Andrew Eddie on 15 May 2010, a few days before the Beta 1 release.  This is part 3 of 3 in a series of in-depth talks on Joomla 1.6.
Published in Joomla
Tuesday, 29 June 2010 00:20

Video : Joomla 1.6 ACL

This video looks at the new access controls (user groups and permissions) in Joomla 1.6 as presented by Andrew Eddie on 15 May 2010, a few days before the Beta 1 release.  This is part 2 of 3 in a series of in-depth talks on Joomla 1.6.
Published in Joomla

In this article I will present 10 essential features to use when developing a website with Joomla CMS, they can be a good source for a Joomla novice developer, which will enable him to know best practices to use in such project.

Take into consideration that these tips are tested in version 1.5 of Joomla, and can more or less do not work into the next version 1.6.

Published in Joomla
Usefull tricks