File upload in CakePHP 3 using Cake Bake

In our last article, we explained how to use cake bake command for a basic CakePHP application. There is no CakePHP internal library to upload files, so we need to use core PHP’s function move_uploaded_file() to upload file/files to the...

Install and Configure GIT

Install and Configure Git on Windows

In our last articles, you read about version control, introduction to Git, and why Git is important to your organization. We hope you all get the idea about Git. To start using Git you need to first install it. For...

ISO IEC 27001

Introduction to ISO 27001

ISO 27001 is the international standard prepared by ISO (International Organization for Standardization) and IEC (International ElectroTechnical Commission) for worldwide standardization in September, 2013. In addition to this, there are 2 revisions of ISO 27000 standard. ISO/IEC 27001:2005 ISO/IEC 27001:2013...

Agile lifecycle

Introduction to AGILE Methodology

What is AGILE Methodology? AGILE software development lifecycle is a practice which means ‘the ability to move quickly & easily’. It promotes continuous iterations/sprints of development and testing throughout the software development lifecycle. AGILE focuses on process adaptability and customer...

PHP Pyramid Part 12

PHP Pyramid Part XII

<?php $limit = 5; for($i=0;$i<=$limit;$i++) { for($j=$limit;$j>=$i;$j–) { echo “&nbsp;&nbsp;”; } echo “1”; for($x=1;$x<=$i;$x++) { echo “0”; } echo “1”; echo “<br/>”; } ?> Output: 11 101 1001 10001 100001 1000001  

PHP Pyramid Part 11

PHP Pyramid Part XI

<?php $limit = 5; for($i=0;$i<=$limit;$i++) { for($j=$limit;$j>=$i;$j–) { echo “&nbsp;&nbsp;”; } for($x=0;$x<=$i;$x++) { if($x==0) { echo “1”; continue; } echo “0”; } echo “<br/>”; } ?> Output; 1 10 100 1000 10000 100000