iTech College - Internet Technology, Online Education, E-Learning, Technician Training, Tech Tutorials, Distance Education, Virtual Learning PHP Course: Array - www.itechcollege.com PHP Course: Array - www.itechcollege.com
Online Degrees Scholarships & Fellowships Internships Student Financial Aid Study Abroad Itech Bookstore
Free Courses
HTML
JavaScript
CSS
ASP
PHP
JSP
ASP.NET
SQL
AJAX
FTP
XML
Career Center
Job List
Web Jobs
Student Jobs
Computer Jobs
Engineer Jobs
Developer Jobs
Job Search
Resume Writing
Job Interview
Salary Info


itech > courses > PHP > Array

Array

The general syntax of assigning values to a array() is:

$clients[0] = 'Mike';
$clients[1] = 'David';
$clients[3] = 'John'; 

If you assign something to an array but leave the index blank, PHP assigns the object onto the end of the array. The statements below is the same as the above::

$clients[] = 'Mike';
$clients[] = 'David';
$clients[] = 'John';   

You also can use the below syntax to create an array:

ArrayName array(
                [index1]=>[value],
                [index2]=>[value],
                ...
               );

For example:

<?php
 $userName = "John";
 $clients = array(
                  0=>"Mike",
                  1=>"David",
                  2=>$userName
                 );
?>

To retrieve data from the array, we can:

<?php
 echo "The client is $clients[1]"; 
?>

The output will be:

The client is David

To print all elements in the array, we can use the For loop:

<?php 
for($i = 0; $i < count($clients); $i++) { 
echo $clients[$i];    
} 
?>
  Back to Index Page
Next Page >>   Basic Tags
Statements Comments and Characters
echo
Variables
Array
Loop
The If Statement
Function
Send and get Query String
Date and Time
Cookies
Environment Variables
Use Database
Create Graphics
 

PHP Books
PHP Jobs



Bookmark:  del.icio.us digg facebook Reddit Mixx BlinkList Fark Furl NewsVine Simpy Spurl Segnalo Technorati blogmarks Google YahooMyWeb Windows Live



PHP Course: Array - www.itechcollege.com
Copyright ©2008, itechcollege.com. All rights reserved
iTechCollege | About iTech | Contact iTech