Die in a fire: if (true) foreach($arr as $elem) echo $elem; Bad: if (true) foreach($arr as $elem) echo $elem; Good: if (true) { foreach($arr as $elem) echo $elem; } Great: if (true) { foreach($arr as $elem) { echo $elem; } }
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.