dalehay.com
Search Engine Optimization

PHP Tutorial - For Loop

Digg! This Page

Introduction

This tutorial will allow you to make a really easy number selecting dropdown menu, using PHPs for() loop.

Step 1

Start by just making the basic HTML code for a dropdown menu, which is the SELECT HTML tag.
Code:
<select>
</select>

Step 2

Now we have the beginnings of the dropdown selection, we need to add the PHP for() loop in it. We need to now tell the PHP to continue to, lets say 35, so to do this we add the for() loop.
Code:
<select>
<?php
for($i=1;$i<=35;$i++) {

}
?>
</select>

If you are currently lost then I will explain each bit to you individually. The for() loop holds 3 properties, where $i=1 is, tells the loop to start from the value of 1. The <=35 bit tells it how much to go upto, then the $i++ tells the loop to count UP to that amount.

Step 3

With the for() loop now working, you can now add in the OPTION values within the PHP for() loop, with the value of $i.
Code:
<select>
<?php
for($i=1;$i<=35;$i++) {
     echo "<option>$i</option>";
}
?>
</select>

Result...

The result will now be viewable if you save that as a PHP file and upload it to your webserver (or localhost). An example of it is below.
Example:

Comments

Comments:

27th Jul 2007 4:41

thanks a lot
By meno

24th Jul 2007 10:40

Thanks.It's good!
By Dudu

1st Aug 2007 23:04

good! ;D
By Dinho

Add your comment...

Your Name:

Your Email:

Your Comment:

Enter This Number:

(85858)


Note: Your IP address is saved into the database when you submit a comment. Any type of threatening behaviour will result in your ISP being contacted and legal action being taken place!





Latest News Stories
» Internet Explorer 8 Problems
» October
» Relaxtion by Dale Hay
» BBC Weather Revamp
» Dog Singing
» Windows 8
Top Viewed Stories
» PHP Mini Message Board Tutorial (4,134)
» Rare McDonalds Monopoly 2008 Tickets (2,303)
» PHP Search Engine Tutorial (2,229)
» Helen Willetts Pregnant? (1,361)
» Create your own Image Uploader (845)
» QI Series 6 on BBC One (829)
Most Commented Stories
» PHP Mini Message Board Tutorial (33)
» Create your own Image Uploader (18)
» I like my DuMP (15)
» I'm on Wikipedia! (7)
» Chocie Munchin Niece (6)
» Life on Mars... (6)