Skip to main content

PHP Tutorial - Lesson 3: Introduction to PHP - Part I


Loops

          As we explained before, PHP syntax is similar to C/C++ and PERL.
          Loops at PHP, Not at all, are same as any loop in C/C++. But also, has a special type of loop will be illustrated when using arrays.

While Loop
          Sometimes you need a block of instructions to be repeated, as long as some condition is true.
          Here is an example
<?php
$x = 1;
while($x<10)
{
echo $x.”  “;
$x++;
}
?>
          Previous script is a simple application, that prints numbers from 1 to 9. as a programmer, you should be familiar with this kind of loop.

Do… While Loop
          In some cases you might want some instructions to be executed at least once, and be repeated as long as condition is true, best choice of loop here to be chosen is do … while loop.
<?php
$i=1;
do {
$i++;
echo $i.” “;
} while($i <10);
?>
          Previous script prints numbers from 2 to 9.

For Loop
          Often, for loop is used when you know how many times shall the loop run.
          Syntax:
          for(init,condition,increment)
          Init: is the code to be executed at beginning of the loop, it is executed once. Init could be any php statement, and might be more than one statement, but should be separated by commas ,
          Condition: the case that makes loop run.
          Increment: is the code to be executed at each time the loop run, as init it might be more than one statement.

Advices
          As a programmer, it is your responsible to determine, what is the best kind of loops to be chosen for your case.
          If you know exactly your script how many times should be run. Then the best choice of loop here will be for loop.
          If you don’t know how many times the script should be run, or it depends on user inputs, then best choice here while or do… while loop.
          If your script should be executed at least one time, then do … while is the best choice.
          If your script should be executed at most one time, then there is no need for loop!
          Latest type of loops that is special, or is one of the powerful properties of php, is foreach loop.
          This kind of loop is the best choice when you deal with arrays.
          Arrays will be discussed next Lesson.

To download this Lesson as PDF file click here: PHP Tutorial - Lesson 3: Introduction to PHP - Part I

Best Wishes,
Anas Jaghoub

Comments

Popular posts from this blog

PHP Tutorial–Guest Book–System Definition and Requirements

In this lesson I’m going to illustrate the system definition and requirements for the Guest Book application. It is an important step in developing any application, since this step gives us an orientation about the system and its functionality, what is expected from the system to do. actually the system definition comes from keywords from customers and end users, usually try to make it clear for what they need in the application, and what they expect the system to do.  As developers it is our role to define the requirements for the system to be developed. In our example the system definition for the Guest Book is: A system that allows visitors of the site to post their comments and feedbacks about the site, with the possibility for managing comments and maintain it easily and user friendly. On the other hand, the system requirements are: a web server, since it is clear that the developed system is going to run on the Internet, so it is a web-based application not windows-based.

تعلم تطوير تطبيقات للموبايل باستخدام الأندرويد

مرحبا أصدقائي يسعدني أن أبدأ معكم سلسلة حلقات في تعلم تطوير تطبيقات للموبايل باستخدام الأندرويد ، وسأسعى جاهدا معكم في أن تكون هذه السلسلة من أوائل السلسلات في اللغة العربية لتعليم برمجة تطبيقات الأندرويد من البداية وحتى الاحتراف. وسأحاول قدر المستطاع الشرح بلغة عربية بسيطة ومفهومة. حيث ستكون غدا إن شاء الله الحلقة الأولى من تعلم تطوير تطبيقات الموبايل باستخدام الأندرويد. أنس الجاغوب Twitter: @anasjaghoub Facebook: anasjaghoub

Web Development Best Practices (PHP Best Practices)

Websites development is one of the most challenging projects ever to develop, according to the large number of components you deal with, integrate, and manage in your application. For example, most web projects Deal with databases as their data source, and I ntegrate with external services called web services and APIs. As well the application M anages its own objects and components from views to models to controllers to plugins and so on. A skilled web developer should have a great/deep knowledge in most of components used in his system, and as well should ha ve intensive focus on how each component work and how can be used, what can be done, and what cannot. On the other hand, the huge amount of requirements, components to manage, and time frame given to you to accomplish your mission, and number of people in your team, all these factors together requires from you to organize your tasks, and priorities your requirements, do deep analysis and planning in order to have a hi